summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-10-15 13:55:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-10-15 13:55:53 +0000
commitdd8977db7e960a4f7887c1240df04fdbe69642cc (patch)
tree123593737fc2984fcc7ba49a3d7c312b3fa060c8 /.github
parentReleasing debian version 0.3.0-1. (diff)
downloadpydyf-dd8977db7e960a4f7887c1240df04fdbe69642cc.tar.xz
pydyf-dd8977db7e960a4f7887c1240df04fdbe69642cc.zip
Merging upstream version 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