feat: add no-id-check flag #116
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: Run tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "*.go" | |
- ".github/workflows/*" | |
- "README.md" | |
pull_request: | |
paths: | |
- "*.go" | |
- ".github/workflows/*" | |
- "README.md" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Build | |
run: go build -v ./... | |
- name: Install gopherbadger | |
run: go get github.com/jpoles1/gopherbadger && go install github.com/jpoles1/gopherbadger | |
- name: Run test | |
run: gopherbadger -style=for-the-badge -covercmd "go test -v -race -covermode atomic -coverprofile=cover.out ./... && go tool cover -func=cover.out" | |
- name: Commit coverage badge | |
uses: EndBug/add-and-commit@v7 | |
with: | |
message: "ci: update coverage" | |
add: "coverage_badge.png" | |
author_name: "github-actions[bot]" | |
author_email: "github-actions[bot]@users.noreply.github.com" | |
- name: Update usage in README | |
run: ./update-usage-readme.sh | |
- name: Commit README update | |
uses: EndBug/add-and-commit@v7 | |
with: | |
message: "ci: update binary usage in README" | |
add: "README.md" | |
author_name: "github-actions[bot]" | |
author_email: "github-actions[bot]@users.noreply.github.com" |