summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-08-09 13:23:27 +0200
committerMatthias Beyer <mail@beyermatthias.de>2022-08-09 13:27:13 +0200
commit15165b15796984b309bdb902acb11271690dac58 (patch)
tree55bc30076d02280f9093036ed3f04e569273cf9d
parent5733820267ce2b647c148de6558a9c7ef07f2f03 (diff)
Remove --all-features
Because on we have a feature that can only be enabled on nightly. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 981cc0b..5354a32 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -81,7 +81,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: doc
- args: --all-features --workspace --no-deps --document-private-items
+ args: --workspace --no-deps --document-private-items
test:
needs: check
@@ -107,7 +107,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
- args: --all --all-features
+ args: --all
clippy:
needs: check
@@ -122,7 +122,7 @@ jobs:
- uses: swatinem/rust-cache@v1
- run: rustup component add clippy
- name: cargo-clippy
- run: cargo clippy --all --all-targets --all-features -- -D warnings
+ run: cargo clippy --all --all-targets -- -D warnings
dco-check:
runs-on: ubuntu-latest