Show build tools version in GitHub actions
This commit is contained in:
parent
c843e81cf2
commit
3389862ea1
|
@ -25,10 +25,14 @@ jobs:
|
||||||
pip install -r requirements.dev.txt
|
pip install -r requirements.dev.txt
|
||||||
|
|
||||||
- name: Flake8
|
- name: Flake8
|
||||||
run: flake8 src/ po/
|
run: |
|
||||||
|
flake8 --version
|
||||||
|
flake8 src/ po/
|
||||||
|
|
||||||
- name: MyPy
|
- name: MyPy
|
||||||
run: mypy src/ po/
|
run: |
|
||||||
|
mypy --version
|
||||||
|
mypy src/ po/
|
||||||
|
|
||||||
meson-build-test:
|
meson-build-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue