Skip to content
Open
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ jobs:

- name: Start iota sandbox
if: matrix.os == 'ubuntu-latest'
uses: './.github/actions/iota-sandbox/setup'
uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action'
with:
branch: add-action
env:
COMPOSE_PROFILES: 'inx-faucet.inx-indexer'
Comment thread
eike-hass marked this conversation as resolved.
Outdated

- name: Run tests
run: cargo test --workspace --all-features --release
Expand All @@ -150,7 +154,7 @@ jobs:

- name: Tear down iota sandbox
if: matrix.os == 'ubuntu-latest' && always()
uses: './.github/actions/iota-sandbox/tear-down'
uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action'

- name: Stop sccache
uses: './.github/actions/rust/sccache/stop-sccache'
Expand Down Expand Up @@ -195,12 +199,16 @@ jobs:
path: bindings/wasm

- name: Start iota sandbox
uses: './.github/actions/iota-sandbox/setup'
uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action'
with:
branch: add-action
env:
COMPOSE_PROFILES: 'inx-faucet.inx-indexer'
Comment thread
eike-hass marked this conversation as resolved.
Outdated

- name: Run Wasm examples
run: npm run test:examples
working-directory: bindings/wasm

- name: Tear down iota sandbox
if: always()
uses: './.github/actions/iota-sandbox/tear-down'
uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action'