build(deps): bump golangci/golangci-lint-action from 5 to 6 (#231) #405
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 GitHub action runs Packer go tests across | |
# multiple runners. | |
# | |
name: "Go Test Multi-Platform" | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'dev' | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
get-go-version: | |
runs-on: ubuntu-latest | |
outputs: | |
go-version: ${{ steps.get-go-version.outputs.go-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Determine Go version' | |
id: get-go-version | |
run: | | |
echo "Found Go $(cat .go-version)" | |
echo "go-version=$(cat .go-version)" >> $GITHUB_OUTPUT | |
darwin-go-tests: | |
needs: | |
- get-go-version | |
runs-on: macos-latest | |
name: Darwin Go tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
- run: | | |
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}" | |
go test -race -count 1 ./... -timeout=3m -v | |
windows-go-tests: | |
needs: | |
- get-go-version | |
runs-on: windows-latest | |
name: Windows Go tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
# Running unit tests directly with `go test` due to gofmt/gofumpt issues in Windows | |
- run: | | |
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}" | |
go test -race -count 1 ./... -timeout=3m -v | |
linux-go-tests: | |
needs: | |
- get-go-version | |
runs-on: ubuntu-latest | |
name: Linux Go tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ needs.get-go-version.outputs.go-version }} | |
- run: | | |
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}" | |
make unit-test |