feat: accept all intent message types in SubmitIntent #275
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |