Show build tools version in GitHub actions

This commit is contained in:
Romain Failliot 2022-10-23 15:16:41 -04:00
parent c843e81cf2
commit 3389862ea1
1 changed files with 6 additions and 2 deletions

View File

@ -25,10 +25,14 @@ jobs:
pip install -r requirements.dev.txt
- name: Flake8
run: flake8 src/ po/
run: |
flake8 --version
flake8 src/ po/
- name: MyPy
run: mypy src/ po/
run: |
mypy --version
mypy src/ po/
meson-build-test:
runs-on: ubuntu-latest