Skip to content

Commit

Permalink
workflow: remove check job
Browse files Browse the repository at this point in the history
`cargo clippy` actually runs `cargo check` too.
  • Loading branch information
Br1ght0ne committed Feb 23, 2021
1 parent 289d5bc commit c33cfff
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/rust.yml
Expand Up @@ -11,32 +11,6 @@ on:
name: Rust

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Restore cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-check-${{ hashFiles('**/Cargo.lock') }}

- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal

- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check

test:
name: Test Suite
runs-on: ubuntu-latest
Expand Down

0 comments on commit c33cfff

Please sign in to comment.