Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yash1io committed Jul 19, 2024
1 parent 368db29 commit 00fa2c0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
- name: Setup golang
uses : actions/setup-go@v4
with :
go-version : '>=1.19.0'
uses: actions/setup-go@v4
with:
go-version: ">=1.19.0"
- name: Install merry
run: curl https://get.merry.dev | bash
- name : Start merry
- name: Start merry
run: merry go --bare --headless
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: generate test generate coverage
run: go test $(go list ./... | grep -v /localnet | grep -v /evm/bindings) -coverprofile=./cover.out
run: go test $(go list ./... | grep -v /localnet | grep -v /evm/bindings) -coverprofile=./cover.out && ginkgo --focus Wallets -- -mode=batcher_rbf && ginkgo --focus Wallets -- -mode=batcher_cpfp
env:
BTC_REGNET_USERNAME: "admin1"
BTC_REGNET_PASSWORD: "123"
BTC_REGNET_INDEXER: "http://0.0.0.0:30000"
BTC_REGNET_INDEXER: "http://0.0.0.0:30000"

0 comments on commit 00fa2c0

Please sign in to comment.