aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ad3537c..d3ba2cc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,6 +20,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: check
+ args: --workspace --all-features
test:
runs-on: ubuntu-latest
@@ -33,6 +34,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
+ args: --workspace --all-features
lints:
name: Lints
@@ -59,7 +61,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
- args: -- -D warnings
+ args: --workspace --all-features --no-deps -- -D warnings
clippy_check:
runs-on: ubuntu-latest
@@ -69,4 +71,4 @@ jobs:
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- args: --all-features \ No newline at end of file
+ args: --workspace --all-features --no-deps \ No newline at end of file