diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-01-05 15:01:52 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2024-01-08 12:47:59 +0100 |
| commit | 99ce505c580afbd9cdedd7576d74a95204078ddc (patch) | |
| tree | 9eef693e781805042c0106d782cc037ea3fa0dc0 /.github | |
| parent | a7de33069ae1a04b8151250bb1af9ea7bdd75c4b (diff) | |
| download | mullvadvpn-99ce505c580afbd9cdedd7576d74a95204078ddc.tar.xz mullvadvpn-99ce505c580afbd9cdedd7576d74a95204078ddc.zip | |
Add `--all-targets` to CI pipeline
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/clippy.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/testframework-clippy.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index bd8d7fa796..0f559d8579 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -64,7 +64,7 @@ jobs: RUSTFLAGS: --deny warnings run: | source env.sh - time cargo clippy --locked + time cargo clippy --locked --all-targets clippy-check-android: name: Clippy linting, Android diff --git a/.github/workflows/testframework-clippy.yml b/.github/workflows/testframework-clippy.yml index 013a608f90..632cfb2dd5 100644 --- a/.github/workflows/testframework-clippy.yml +++ b/.github/workflows/testframework-clippy.yml @@ -43,7 +43,7 @@ jobs: env: RUSTFLAGS: --deny warnings run: | - time cargo clippy --locked + time cargo clippy --locked --all-targets clippy-check-test-windows: name: Clippy linting of test workspace (Windows) @@ -70,4 +70,4 @@ jobs: RUSTFLAGS: --deny warnings run: | # Exclude checking test-manager on Windows, since it is not a supported compilation target. - time cargo clippy --workspace --exclude test-manager --locked + time cargo clippy --all-targets --workspace --exclude test-manager --locked |
