We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac1b0e commit 2c0c6ddCopy full SHA for 2c0c6dd
.github/workflows/ci.yml
@@ -11,18 +11,21 @@ env:
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v3
19
- - name: Build (bin)
20
- run: cargo build --verbose
21
- name: Build (lib)
22
- run: cargo build --lib --no-default-features --verbose
+ run: cargo build --lib --no-default-features
+ - name: Build (bin)
+ run: cargo build --all
+ clippy:
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v3
25
- name: Clippy
26
run: cargo clippy --all --all-targets -- -D warnings
27
- name: Clippy (no features)
28
run: cargo clippy --all --all-targets --no-default-features -- -D warnings
29
- name: Clippy (all features)
30
run: cargo clippy --all --all-targets --all-features -- -D warnings
31
+
0 commit comments