diff options
| author | Fuwn <[email protected]> | 2021-04-23 20:24:47 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-23 20:24:47 -0700 |
| commit | 1f89b9a04b73e5922982554f21446b7f906ac05a (patch) | |
| tree | b632e27d3197261dcb3a92fe43ffd918a7dcb74d /.github | |
| parent | chore(actions): Check for compilation errors on push (diff) | |
| download | whirl-1f89b9a04b73e5922982554f21446b7f906ac05a.tar.xz whirl-1f89b9a04b73e5922982554f21446b7f906ac05a.zip | |
fix: Just about everything
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/rust.yml | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 40ad2b0..c2c45e1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,4 +1,4 @@ -name: Rust ✅ +name: Rust ✅/ 🚫 on: push: @@ -13,5 +13,19 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: cargo check + - name: Checkout 🛒 + uses: actions/checkout@v2 + + - name: Toolchain 🧰 + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly-2021-02-20 + components: rustfmt, clippy + override: true + + - name: Check ✅/ 🚫 + uses: actions-rs/cargo@v1 + continue-on-error: false + with: + command: check |