We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed7a538 commit ac9ee4eCopy full SHA for ac9ee4e
.github/workflows/smart-contract-verifier.yml
@@ -23,18 +23,18 @@ defaults:
23
working-directory: smart-contract-verifier
24
25
jobs:
26
- build:
27
- name: Checkout and build
28
- uses: ./.github/workflows/t_build_tests.yml
29
- with:
30
- working-directory: smart-contract-verifier
31
-
32
test:
33
name: Unit, doc and integration tests
34
- needs:
35
- - build
36
runs-on: ubuntu-latest
37
steps:
+ - name: Checkout sources
+ uses: actions/checkout@v4
+
+ - name: Setup
+ uses: ./.github/actions/setup
+ with:
+ working-directory: smart-contract-verifier
38
- name: Unit tests
39
run: RUST_BACKTRACE=1 RUST_LOG=info cargo test --locked --workspace --all-features --lib --bins -- --nocapture
40
if: success() || failure()
.github/workflows/t_build_tests.yml
0 commit comments