chore(deps): bump golangci/golangci-lint-action from 4 to 5 #183
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
goVer: ["1.22.x"] | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go ${{ matrix.goVer }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.goVer }} | |
cache: false | |
id: go | |
- name: cache go modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Format Check | |
if: matrix.os != 'windows-latest' | |
run: | | |
diff -u <(echo -n) <(gofmt -d .) | |
- name: Get dependencies | |
run: go mod download | |
- name: Build | |
run: go build -v ./... |