Skip to content

Commit dcd3dfd

Browse files
authored
Merge pull request #106 from cakebaker/ci_fix_cargo_features_option
ci: remove `CARGO_FEATURES_OPTION`
2 parents 1575aec + 90bed40 commit dcd3dfd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ jobs:
102102
if [ -n "${{ matrix.job.toolchain }}" ]; then TOOLCHAIN="${{ matrix.job.toolchain }}" ; fi
103103
outputs TOOLCHAIN
104104
# target-specific options
105-
# * CARGO_FEATURES_OPTION
106-
CARGO_FEATURES_OPTION='--all -- --check' ; ## default to '--all-features' for code coverage
107105
# * CODECOV_FLAGS
108106
CODECOV_FLAGS=$( echo "${{ matrix.job.os }}" | sed 's/[^[:alnum:]]/_/g' )
109107
outputs CODECOV_FLAGS
@@ -119,7 +117,7 @@ jobs:
119117
if: runner.os == 'Windows'
120118
run: echo "C:\Program Files\Git\usr\bin" >> $env:GITHUB_PATH
121119
- name: Test
122-
run: cargo test ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} --no-fail-fast
120+
run: cargo test --all-features --no-fail-fast
123121
env:
124122
CARGO_INCREMENTAL: "0"
125123
RUSTC_WRAPPER: ""

0 commit comments

Comments
 (0)