We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b60f46f commit 72acca0Copy full SHA for 72acca0
.github/workflows/run-tests.yml
@@ -10,6 +10,7 @@ on:
10
jobs:
11
run-tests:
12
runs-on: ubuntu-latest
13
+ # Requires newer gtk-4 than what's available in default 22.04, therefore using docker
14
container: ubuntu:24.04
15
16
env:
@@ -23,10 +24,15 @@ jobs:
23
24
- name: Install deps
25
run: |
26
apt update
- apt install -y libgtk-4-dev cargo
27
+ apt install -y libgtk-4-dev cargo rust-clippy
28
29
- name: Run sccache-cache
30
uses: mozilla-actions/[email protected]
31
32
- run: cargo build --verbose
33
- run: cargo test --verbose
34
+
35
+ - uses: giraffate/clippy-action@v1
36
+ with:
37
+ reporter: 'github-pr-review'
38
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments