Skip to content

Fixed Docker workflow #575

Fixed Docker workflow

Fixed Docker workflow #575

Workflow file for this run

name: Lint
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
Analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [3.9, '3.10', '3.11', '3.12']
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install Tox
run: |
pip install "tox>=4.13.0,<5"
- name: Lint Codebase
run: |
tox -e lint