Skip to content

Commit

Permalink
Update packages, Python to 3.11+ and dev packages
Browse files Browse the repository at this point in the history
  • Loading branch information
JPTIZ committed Dec 26, 2023
1 parent a642cc9 commit 4733dad
Show file tree
Hide file tree
Showing 4 changed files with 151 additions and 462 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,14 @@ jobs:
python-test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8]

steps:
-
uses: actions/checkout@v2
uses: actions/checkout@v4
-
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'
-
name: Install dependencies
run: |
Expand All @@ -27,7 +23,7 @@ jobs:
-
name: Run tests
run: |
poetry run isort --check-only --diff --line-width=100 .
poetry run black --check --diff --line-length=100 .
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
poetry run pytest
Loading

0 comments on commit 4733dad

Please sign in to comment.