We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a37224b commit 42e11c4Copy full SHA for 42e11c4
.github/workflows/build.yml
@@ -6,6 +6,7 @@ jobs:
6
pingora:
7
strategy:
8
matrix:
9
+ # nightly, MSRV, and latest stable
10
toolchain: [nightly, 1.72, 1.82.0]
11
runs-on: ubuntu-latest
12
# Only run on "pull_request" event for external PRs. This is to avoid
@@ -51,3 +52,7 @@ jobs:
51
52
- name: Run cargo audit
53
run: |
54
[[ ${{ matrix.toolchain }} != 1.82.0 ]] || (cargo install cargo-audit && cargo audit)
55
+
56
+ - name: Run cargo machete
57
+ run: |
58
+ [[ ${{ matrix.toolchain }} != 1.72.0 ]] || (cargo install cargo-machete && cargo machete)
0 commit comments