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 4652a6f commit ff62de5Copy full SHA for ff62de5
.github/workflows/release.yml
@@ -65,3 +65,22 @@ jobs:
65
branch: main-dev
66
unprotect_reviews: True
67
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