Skip to content

Remove matrix, replace with TxGraph #1310

Remove matrix, replace with TxGraph

Remove matrix, replace with TxGraph #1310

name: ci_integration
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
test:
name: integration tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.23.1'
- name: Run go work sync
run: go work sync
- name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
- name: Run Arkd and Arkd Wallet
run: make -C .. docker-run
- name: integration testing
run: make integrationtest
- name: Capture arkd logs
if: failure()
run: |
echo "=== Arkd Logs ==="
docker logs arkd
echo "=== End Arkd Logs ==="
- name: Tear down
run: make -C .. docker-stop