Skip to content

Commit 01d24ae

Browse files
committed
Refactored linting flake8, disabled for python version 3.12
1 parent da827ac commit 01d24ae

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
21-
2221
steps:
2322
- uses: actions/checkout@v2
2423
with:
@@ -33,8 +32,9 @@ jobs:
3332
poetry-version: 1.3.2
3433
- name: Install dependencies
3534
run: poetry install -E crypto
36-
# - name: Lint with flake8
37-
# run: poetry run flake8
35+
- name: Lint with flake8
36+
if: ${{ matrix.python-version != '3.12' }}
37+
run: poetry run flake8
3838
- name: Generate rest sync code and tests
3939
run: poetry run unasync
4040
- name: Test with pytest

0 commit comments

Comments
 (0)