Skip to content

Commit 3389862

Browse files
committed
Show build tools version in GitHub actions
1 parent c843e81 commit 3389862

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@ jobs:
2525
pip install -r requirements.dev.txt
2626
2727
- name: Flake8
28-
run: flake8 src/ po/
28+
run: |
29+
flake8 --version
30+
flake8 src/ po/
2931
3032
- name: MyPy
31-
run: mypy src/ po/
33+
run: |
34+
mypy --version
35+
mypy src/ po/
3236
3337
meson-build-test:
3438
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)