diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/doconfly.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/doconfly.yml b/.github/workflows/doconfly.yml index cf2c1ca..a720a66 100644 --- a/.github/workflows/doconfly.yml +++ b/.github/workflows/doconfly.yml @@ -5,7 +5,7 @@ on: - master tags: - "*" - + jobs: doconfly: name: doconfly job diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b69256e..d2057b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,6 @@ jobs: name: ${{ matrix.os }} - ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: - fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8'] @@ -33,3 +32,7 @@ jobs: run: python -m pip install .[test] - name: Launch tests run: python -m pytest + - name: Check coding style + run: python -m flake8 + - name: Check imports order + run: python -m isort . --check --diff |