diff options
| author | Fuwn <[email protected]> | 2021-04-23 20:24:47 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-23 20:24:47 +0000 |
| commit | 8a4f86469c84a0b26bc78d3a87c599dcc2a6b624 (patch) | |
| tree | f6f4f00a180a3bffbc6d8dae2bd431cfc35946b6 /.github/workflows | |
| parent | chore(actions): Check for compilation errors on push (diff) | |
| download | whirl-8a4f86469c84a0b26bc78d3a87c599dcc2a6b624.tar.xz whirl-8a4f86469c84a0b26bc78d3a87c599dcc2a6b624.zip | |
fix: Just about everything
Diffstat (limited to '.github/workflows')
| -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 |