Skip to content

Merge pull request #30 from lorien/py13 #32

Merge pull request #30 from lorien/py13

Merge pull request #30 from lorien/py13 #32

Workflow file for this run

name: Code Quality
on: ["push", "pull_request"]
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install -U -r requirements_dev.txt
pip install -U -e .
- name: Run ruff
run: |
make ruff
- name: Run pylint
run: |
make pylint
- name: Run bandit
run: |
make bandit