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 49e00ac commit b794d9aCopy full SHA for b794d9a
.github/workflows/ci.yml
@@ -33,7 +33,7 @@ jobs:
33
- name: Bench
34
run: cargo bench --package io-uring-bench
35
36
- check-vendor:
+ check-tier1:
37
runs-on: ubuntu-latest
38
39
strategy:
@@ -47,6 +47,28 @@ jobs:
47
- x86_64-unknown-linux-gnu
48
- x86_64-unknown-linux-musl
49
- aarch64-unknown-linux-gnu
50
+
51
+ steps:
52
+ - uses: actions/checkout@v4
53
+ - uses: dtolnay/rust-toolchain@stable
54
+ with:
55
+ toolchain: ${{ matrix.toolchain }}
56
+ target: ${{ matrix.target }}
57
+ components: clippy
58
+ override: true
59
+ - name: Lint
60
+ run: cargo clippy --target ${{ matrix.target }}
61
62
+ check-tier2:
63
+ runs-on: ubuntu-latest
64
65
+ strategy:
66
+ fail-fast: false
67
68
+ matrix:
69
+ toolchain:
70
+ - stable
71
+ target:
72
- riscv64gc-unknown-linux-gnu
73
74
steps:
0 commit comments