-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
905dc13
commit abf3ba5
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Tests | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
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 -v -coverprofile=coverage.out ./... | ||
|
||
- name: Upload coverage report | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage-report | ||
path: coverage.out |