summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-08-29 15:58:06 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-08-29 16:08:49 +0300
commita0b7da22086b1704f52a3a34a3edb25f2bcd5d7e (patch)
treed7b25e7b1f29f968dd0968d2cb0ff511b3c8b56f /.github/workflows
parentc0d757cb8357c71a1187078bb18b246195cb8911 (diff)
downloadapscheduler-a0b7da22086b1704f52a3a34a3edb25f2bcd5d7e.tar.gz
Switched to the src/ layout
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/codeqa-test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml
index 78f0e88..d7f8590 100644
--- a/.github/workflows/codeqa-test.yml
+++ b/.github/workflows/codeqa-test.yml
@@ -21,11 +21,11 @@ jobs:
- name: Install dependencies
run: pip install pyproject-flake8 isort mypy
- name: Run flake8
- run: pflake8 apscheduler tests
+ run: pflake8 src tests
# - name: Check types with Mypy
-# run: mypy apscheduler
+# run: mypy src tests
- name: Run isort
- run: isort -c apscheduler tests
+ run: isort -c src tests
test-linux:
needs: [lint]