Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
ci: don't try to test unstable features on stable Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
bgeron committed Mar 27, 2020
1 parent fdf4fa2 commit 12549b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-targets --all-features
run: cargo build --all-targets
- name: Run tests
run: cargo test --all-targets --all-features
run: cargo test --all-targets
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::all -D clippy::cargo
run: cargo clippy --all-targets -- -D warnings -D clippy::all -D clippy::cargo
- name: Check for correct formatting
run: cargo fmt -- --check --files-with-diff
- name: Cargo audit
Expand Down

0 comments on commit 12549b0

Please sign in to comment.