Skip to content

Commit ff62de5

Browse files
committed
Make: Test released artifacts
1 parent 4652a6f commit ff62de5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,22 @@ jobs:
6565
branch: main-dev
6666
unprotect_reviews: True
6767
force: True
68+
69+
test:
70+
name: Test
71+
runs-on: ubuntu-24.04
72+
needs: versioning
73+
if: github.ref == 'refs/heads/main'
74+
steps:
75+
- name: Checkout
76+
uses: actions/checkout@v5
77+
with:
78+
fetch-depth: 0
79+
80+
- name: Install
81+
uses: dtolnay/rust-toolchain@stable
82+
83+
- name: Check for warnings
84+
run: cargo check --benches --all-features --all-targets
85+
env:
86+
RUSTFLAGS: "-C target-cpu=native"

0 commit comments

Comments
 (0)