We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96a30b4 + 31009f3 commit 0598508Copy full SHA for 0598508
1 file changed
.github/workflows/ci.yaml
@@ -70,11 +70,27 @@ jobs:
70
run: cargo install cross
71
- run: ./scripts/cross-tests.sh "docs" ${{ matrix.rust }} ${{ matrix.target }}
72
73
+ cargo-careful:
74
+ if: ${{ github.event_name == 'merge_group' }}
75
+ runs-on: ubuntu-latest
76
+ name: cargo-careful
77
+ steps:
78
+ - uses: actions/checkout@v4
79
+ - uses: dtolnay/rust-toolchain@master
80
+ with:
81
+ toolchain: nightly
82
+ - uses: Swatinem/rust-cache@v2
83
+ - name: Install cargo-careful
84
+ run: cargo install cargo-careful
85
+ - run: cargo careful test -Zcareful-sanitizer --features="$FEATURES"
86
+ - run: cargo careful test -Zcareful-sanitizer -p ndarray-rand
87
+
88
conclusion:
89
needs:
90
- clippy
91
- tests
92
- cross_test
93
+ - cargo-careful
94
if: always()
95
runs-on: ubuntu-latest
96
steps:
0 commit comments