settle mint and melt quotes internally if invoice is the same #137
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.2 | |
- name: Go Fmt | |
run: go fmt ./... | |
- name: Go Vet | |
run: go vet ./... | |
- name: Tests | |
run: go test -v ./... | |
- name: Integration Tests | |
run: go test -v --tags=integration ./mint | |
- run: go test -v --tags=integration ./wallet |