diff options
| author | seth <[email protected]> | 2023-09-07 17:08:59 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-09-07 17:15:26 -0400 |
| commit | 5a6ca84daf95b71df16e13f83d18f23eb04f217f (patch) | |
| tree | 65ff4a388c4bfa3584cd8b8d75c90face9f741f5 /.github/workflows/clippy.yaml | |
| parent | 0cf0db060adc19abf44721771f89f07d239631bd (diff) | |
actions: fetch cargo deps before running clippy
Diffstat (limited to '.github/workflows/clippy.yaml')
| -rw-r--r-- | .github/workflows/clippy.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/clippy.yaml b/.github/workflows/clippy.yaml index caa22bb..ea46bc5 100644 --- a/.github/workflows/clippy.yaml +++ b/.github/workflows/clippy.yaml @@ -24,6 +24,9 @@ jobs: run: | nix develop --accept-flake-config + - name: fetch cargo deps + run: cargo fetch --locked --target x86_64-unknown-linux-gnu + - name: run clippy run: | cargo clippy --all --all-targets --message-format=json \ |
