Merge pull request #167 from sir-gon/renovate/golang.org-x-net-0.x #526
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: Go | |
on: | |
push: | |
branches: [ "main", "develop", "feature/*" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
LOG_LEVEL: WARN | |
jobs: | |
build: | |
name: "Run CI" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
"windows-latest", | |
"ubuntu-latest", | |
"macOS-latest" | |
] | |
go: ["1.19.x", "1.20.x"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: go build -v ./... | |
- name: Lint (gofmt) | |
run: gofmt -l . && echo '✔ Your code looks good.' | |
- name: Lint (go vet) | |
run: go vet -v ./... | |
- name: Lint golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout=10m | |
version: v1.53 | |
skip-pkg-cache: true | |
skip-build-cache: true | |
- name: Test | |
run: go test -v -coverprofile="coverage.out" ./... | |
- name: Coverage | |
run: go tool cover -func="coverage.out" | |
- name: Upload coverage reports to Codecov with GitHub Action | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # required | |
verbose: true # optional (default = false) |