We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f5bc8 commit ca72f47Copy full SHA for ca72f47
1 file changed
.github/workflows/ci.yml
@@ -43,12 +43,15 @@ jobs:
43
- name: Cargo fmt
44
run: cargo fmt --check
45
46
- - name: Cargo clippy
47
- run: cargo clippy --all-targets -- -D warnings
+ - name: Cargo build
+ run: cargo build --release
48
49
- name: Cargo test
50
run: cargo test
51
52
+ - name: Cargo clippy
53
+ run: cargo clippy --all-targets -- -D warnings
54
+
55
publish-check:
56
name: Publish Check (dry-run)
57
runs-on: ubuntu-latest
@@ -64,6 +67,12 @@ jobs:
64
67
path: ~/.cargo/registry
65
68
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
66
69
70
+ - name: Cache cargo index
71
+ uses: actions/cache@v4
72
+ with:
73
+ path: ~/.cargo/git
74
+ key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
75
76
- name: Cargo publish dry-run
77
run: cargo publish --dry-run
78
0 commit comments