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 6428b41 commit 26e9858Copy full SHA for 26e9858
.github/workflows/checks.yml
@@ -25,13 +25,16 @@ jobs:
25
matrix:
26
action: [clippy, fmt, test]
27
steps:
28
- - name: Setup build environment
29
- run: rustup toolchain install nightly --profile minimal
30
- name: Fetch latest code
31
uses: actions/checkout@v3
+ - name: Setup build environment
+ if: matrix.action != 'fmt'
32
+ run: rustup show
33
- uses: Swatinem/rust-cache@v2
34
35
with:
36
prefix-key: ${{ env.CACHE_VERSION }}
37
+ key: ${{ matrix.action }}
38
- name: Cargo clippy
39
if: matrix.action == 'clippy'
40
uses: actions-rs/clippy-check@v1
0 commit comments