generated from sv-tools/go-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update checks and use Go v1.21 to 1.23 (#73)
* Update checks.yaml * minimal Go v1.21 * Update README.md * Delete Makefile * Fix doc string for Header.Content field * Update doc strings for header type * Show diff if go fmt failed
- Loading branch information
Showing
5 changed files
with
26 additions
and
47 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 |
---|---|---|
|
@@ -22,42 +22,49 @@ jobs: | |
security-events: write | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5 | ||
with: | ||
languages: go | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5 | ||
|
||
UnitTests: | ||
UnitTestJob: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: | ||
- "1.20" | ||
- "1.21" | ||
- "1.22" | ||
- "1.23" | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: gofmt | ||
run: diff -u <(echo -n) <(gofmt -l . ) | ||
- name: show diff | ||
if: ${{ failure() }} | ||
run: git diff | ||
- name: go vet | ||
run: go vet ./... | ||
- name: fieldalignment | ||
run: go vet -vettool=$(which fieldalignment) ./... | ||
- name: Run Unit Tests | ||
run: go test -race -cover -coverprofile=coverage.out -covermode=atomic ./... | ||
- name: Codecov | ||
uses: codecov/[email protected] | ||
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5.0.7 | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
with: | ||
file: ./coverage.out | ||
|
||
UnitTests: | ||
needs: UnitTestJob | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "Unit Tests Passed" |
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
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
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