Files
ark/.github/workflows/ark.integration.yaml
Dusan Sekulic 4304626d08 CLI with ARK Sdk (#307)
* Export new methods

* Use sdk in CLI

* pr review refactor

* go sync

* Fixes

* run integration test on every change

* fixes

* go sync

* fix

* Persist explorer url

* Fix decoding bitcoin address

* Add missing timeout to e2e test

* Fix

* Fixes

---------

Co-authored-by: altafan <18440657+altafan@users.noreply.github.com>
2024-09-13 19:13:48 +02:00

29 lines
549 B
YAML
Executable File

name: ci_integration
on:
push:
branches: [master]
pull_request:
branches:
- master
jobs:
test:
name: integration tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/setup-go@v3
with:
go-version: ">1.17.2"
- uses: actions/checkout@v3
- run: go get -v -t -d ./...
- name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
- name: integration testing
run: make integrationtest