Remove matrix, replace with TxGraph
#1308
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: 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 |