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 7012d8d commit 68cbd44Copy full SHA for 68cbd44
.github/workflows/tests.yaml
@@ -222,6 +222,26 @@ jobs:
222
path: target/release/mina
223
retention-days: 7
224
225
+ account-tests:
226
+ needs: [build]
227
+ timeout-minutes: 20
228
+ runs-on: ubuntu-24.04
229
+ steps:
230
+ - name: Git checkout
231
+ uses: actions/checkout@v5
232
+
233
+ - name: Setup build dependencies
234
+ uses: ./.github/actions/setup-build-deps
235
236
+ - name: Setup Rust
237
+ uses: ./.github/actions/setup-rust
238
+ with:
239
+ toolchain: 1.84
240
+ cache-prefix: build-v0
241
242
+ - name: Run account tests
243
+ run: make test-account
244
245
build-tests:
246
timeout-minutes: 60
247
runs-on: ubuntu-22.04
0 commit comments