We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e38afb1 commit 38cf2c7Copy full SHA for 38cf2c7
.github/workflows/ubuntu_test.yml
@@ -48,3 +48,18 @@ jobs:
48
- name: Run unit tests
49
run: |
50
python3 -m unittest
51
+ lint:
52
+ name: Run linters on the code
53
+ runs-on: ubuntu-latest
54
+ steps:
55
+ - name: Checkout
56
+ uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
57
+ - name: Install dependencies
58
+ run: |
59
+ sudo apt update
60
+ sudo apt install python3 python3-pip meson
61
+ sudo pip3 install mypy flake8 pyflakes pycodestyle
62
+ - name: Run linters
63
64
+ meson setup build
65
+ ninja -C build lint-python
0 commit comments