Skip to content

Commit

Permalink
Refactored linting flake8, disabled for python version 3.12
Browse files Browse the repository at this point in the history
sacOO7 committed Jan 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent da827ac commit 01d24ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,6 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
with:
@@ -33,8 +32,9 @@ jobs:
poetry-version: 1.3.2
- name: Install dependencies
run: poetry install -E crypto
# - name: Lint with flake8
# run: poetry run flake8
- name: Lint with flake8
if: ${{ matrix.python-version != '3.12' }}
run: poetry run flake8
- name: Generate rest sync code and tests
run: poetry run unasync
- name: Test with pytest

0 comments on commit 01d24ae

Please sign in to comment.