Remove Invoice Table From Invoice List If The Invoice Is Expired And Not Paid #1225
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: Tests | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
test-go: | |
name: Go | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install cover | |
run: go get golang.org/x/tools/cmd/cover | |
- name: Tests | |
run: RELAY_AUTH_KEY=TEST go test ./... -race -v -coverprofile=coverage.out && ./cover-check.sh coverage.out 8.4 |