Skip to content

Commit

Permalink
chore(ci): Stop using all features
Browse files Browse the repository at this point in the history
We might enable some nightly-only features
  • Loading branch information
epage committed Dec 9, 2021
1 parent ac95522 commit 94825d4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,4 @@ jobs:
- name: Lint (minimal)
run: make clippy-minimal
- name: Lint (all)
run: make clippy-all
run: make clippy-full
2 changes: 1 addition & 1 deletion .github/workflows/rust-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ jobs:
- name: Lint Minimal
run: make clippy-minimal
- name: Lint All
run: make clippy-all
run: make clippy-full
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ _FEATURES_full = --features "derive cargo env unicode yaml regex unstable-replac
_FEATURES_debug = ${_FEATURES_full} --features debug
_FEATURES_release = ${_FEATURES_full} --release

_FEATURES_all = --all-features

check-%:
cargo check ${_FEATURES_${@:check-%=%}} --all-targets ${ARGS}

Expand Down

0 comments on commit 94825d4

Please sign in to comment.