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 1abf55e commit 2e94120Copy full SHA for 2e94120
.github/workflows/ci.yml
@@ -116,6 +116,23 @@ jobs:
116
env:
117
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: valgrind --leak-check=no --error-exitcode=1
118
119
+ careful:
120
+ runs-on: ubuntu-latest
121
+ needs: [lint, check-msrv, examples]
122
+ steps:
123
+ - uses: actions/checkout@v3
124
+ - uses: actions-rs/toolchain@v1
125
+ with:
126
+ toolchain: nightly
127
+ profile: minimal
128
+ default: true
129
+ - uses: Swatinem/rust-cache@v2
130
+ continue-on-error: true
131
+ - run: |
132
+ pip install numpy
133
+ cargo install --locked cargo-careful
134
+ cargo careful test --all-features
135
+
136
check-msrv:
137
runs-on: ubuntu-latest
138
steps:
0 commit comments