fix: location_id can't be zero #13 #19
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: "Pull request/Push: Unit test" | |
on: | |
pull_request: | |
branches: | |
- dev | |
- main | |
push: | |
branches: | |
- dev | |
- main | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.5" | |
- name: Install dependencies | |
run: go mod download | |
- name: Vet | |
run: go vet ./... | |
- name: Test | |
run: | | |
go test -v -coverpkg ./src/... -coverprofile coverage.out -covermode count ./tests/... | |
go tool cover -func="./coverage.out" |