diff options
| author | Fuwn <[email protected]> | 2021-05-20 02:58:06 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-20 02:58:06 +0000 |
| commit | 14a46e5137c4deb4a5139de61198ec725d2bda92 (patch) | |
| tree | 2989c6ca4119901b86552568233cd84d45e20d36 /.github/workflows/rust.yml | |
| parent | build: mess with cross-compiling settings (diff) | |
| download | whirl-14a46e5137c4deb4a5139de61198ec725d2bda92.tar.xz whirl-14a46e5137c4deb4a5139de61198ec725d2bda92.zip | |
ci(actions): security audit action
Diffstat (limited to '.github/workflows/rust.yml')
| -rw-r--r-- | .github/workflows/rust.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c4f08d5..b2755a1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -21,6 +21,7 @@ jobs: steps: - name: Checkout 🛒 uses: actions/checkout@v2 + - name: Toolchain 🧰 uses: actions-rs/toolchain@v1 with: @@ -28,8 +29,10 @@ jobs: toolchain: nightly-2021-02-20 components: rustfmt, clippy override: true + - name: Check ✅/ 🚫 uses: actions-rs/cargo@v1 continue-on-error: false with: command: check + args: --verbose |