Skip to content

Commit 955fc5d

Browse files
committed
update ci script
Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent d9ccd41 commit 955fc5d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,21 @@ jobs:
2323
- name: Build (Default)
2424
run: cargo build
2525

26+
- name: Clean
27+
run: cargo clean
28+
2629
- name: Build (SP3)
2730
run: cargo build --features sp3
2831

32+
- name: Clean
33+
run: cargo clean
34+
2935
- name: Build (all features)
3036
run: cargo build --all-features
3137

38+
- name: Clean
39+
run: cargo clean
40+
3241
- name: Run tests
3342
run: cargo test --all-features
3443

@@ -40,11 +49,15 @@ jobs:
4049
steps:
4150
- name: Checkout
4251
uses: actions/checkout@v4
52+
with:
53+
submodules: recursive
54+
fetch-depth: 0
4355

4456
- name: Install stable toolchain
4557
uses: dtolnay/rust-toolchain@master
4658
with:
4759
toolchain: stable
60+
4861
- name: Publish
4962
env:
5063
TOKEN: ${{ secrets.CRATES_IO_TOKEN }}

0 commit comments

Comments
 (0)