Skip to content

Commit ac9ee4e

Browse files
committed
Revert "chore(verifier): extract build into a separate step"
This reverts commit ed7a538
1 parent ed7a538 commit ac9ee4e

File tree

2 files changed

+8
-32
lines changed

2 files changed

+8
-32
lines changed

.github/workflows/smart-contract-verifier.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ defaults:
2323
working-directory: smart-contract-verifier
2424

2525
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-
3226
test:
3327
name: Unit, doc and integration tests
34-
needs:
35-
- build
3628
runs-on: ubuntu-latest
3729
steps:
30+
- name: Checkout sources
31+
uses: actions/checkout@v4
32+
33+
- name: Setup
34+
uses: ./.github/actions/setup
35+
with:
36+
working-directory: smart-contract-verifier
37+
3838
- name: Unit tests
3939
run: RUST_BACKTRACE=1 RUST_LOG=info cargo test --locked --workspace --all-features --lib --bins -- --nocapture
4040
if: success() || failure()

.github/workflows/t_build_tests.yml

-24
This file was deleted.

0 commit comments

Comments
 (0)