summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-10-15 13:55:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-10-15 13:55:48 +0000
commit38177ba9a3df33be30ba05b07b70000ad5632ce1 (patch)
treef7975e163282ca7930f568adc078b9e115dc59ac /.github
parentAdding upstream version 0.3.0. (diff)
downloadpydyf-38177ba9a3df33be30ba05b07b70000ad5632ce1.tar.xz
pydyf-38177ba9a3df33be30ba05b07b70000ad5632ce1.zip
Adding upstream version 0.5.0.upstream/0.5.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/doconfly.yml2
-rw-r--r--.github/workflows/tests.yml5
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