Skip to content

feat: accept all intent message types in SubmitIntent #275

feat: accept all intent message types in SubmitIntent

feat: accept all intent message types in SubmitIntent #275

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
unit:
name: unit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '1.26.4'
- name: Run unit tests
run: make test
integration:
name: integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '1.26.4'
- name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
- name: Run regtest environment
run: make docker-run
- name: Run integration tests
run: make integrationtest
- name: Capture logs
if: failure()
run: |
echo "=== Emulator logs ==="
docker logs emulator 2>&1 || true
echo "=== Arkd logs ==="
docker logs arkd 2>&1 || true
- name: Tear down
if: always()
run: make docker-stop