Skip to content

Update packages, Python to 3.11+ and dev packages #28

Update packages, Python to 3.11+ and dev packages

Update packages, Python to 3.11+ and dev packages #28

Workflow file for this run

name: python-test
on: [push, pull_request]
jobs:
python-test:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v4
-
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
-
name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
-
name: Run tests
run: |
poetry run isort --check-only --diff .
poetry run black --check --diff .
poetry run pylint --fail-under 7.0 $(git ls-files '*.py')
poetry run pytest