ci: adds a workflow for PR #6
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: Tests | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
- name: Install dependencies | |
run: go get . | |
- name: Check formatting | |
run: | | |
fmt_files=$(gofmt -l .) | |
if [ -n "$fmt_files" ]; then | |
echo "Go code is not formatted. Please run 'go fmt'." | |
gofmt -d . | |
exit 1 | |
fi | |
- name: Tidy go.mod and go.sum | |
run: | | |
go mod tidy | |
git diff --exit-code go.mod go.sum | |
if [ $? -ne 0 ]; then | |
echo "go.mod or go.sum is not tidy. Please run 'go mod tidy'." | |
exit 1 | |
fi | |
- name: Run go vet | |
run: go vet ./... | |
- name: Build | |
run: go build . | |
- name: Test with the Go CLI | |
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./... | |
- name: check test coverage | |
uses: vladopajic/go-test-coverage@v2 | |
with: | |
# Configure action using config file (option 1) | |
config: ./.testcoverage.yml | |
# Configure action by specifying input parameters individually (option 2). | |
# If you are using config file (option 1) you shouldn't use these parameters, however | |
# specifing these action parameters will override appropriate config values. | |
profile: cover.out | |
local-prefix: github.com/algorandfoundation/hack-tui | |
threshold-file: 80 | |
threshold-package: 80 | |
threshold-total: 95 |