Skip to content

Version 1.0.0

Version 1.0.0 #417

Workflow file for this run

name: Linting
on:
push:
branches:
- "main"
- "dev/[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches:
- "main"
- "dev/[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch: {}
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python and Upgrade pip
uses: ./.github/actions/setup_python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install $(grep flake8 requirements_dev.txt | xargs)
- name: Lint with flake8
run: |
flake8 --config tox.ini