Skip to content

Commit

Permalink
Removing --all-features flag
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Oct 22, 2019
1 parent c99882f commit 928a25f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/tier1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,12 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features

- name: Run tests (nightly only)
if: matrix.toolchain == 'nightly'
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features

clippy:
runs-on: ${{ matrix.os }}
Expand All @@ -62,7 +60,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
args: --all-targets -- -D warnings

rustfmt:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -109,7 +107,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --all --all-features
args: --all
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads"
Expand All @@ -119,7 +117,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --all --all-features --no-fail-fast
args: --all --no-fail-fast
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Coverflow-checks=off -Zno-landing-pads"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tier2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,3 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features

0 comments on commit 928a25f

Please sign in to comment.