ci: Bump actions/setup-go from 5.0.2 to 5.1.0 #107
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: Pull Request Validation | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- main | |
jobs: | |
go-mod: | |
strategy: | |
matrix: | |
name: | |
- oldstable | |
- stable | |
- tip | |
include: | |
- name: oldstable | |
version: "1.22" | |
- name: stable | |
version: "1.23" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go v${{ matrix.name }} | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version: ${{ matrix.version }} | |
- name: Checkout code | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 | |
- name: Check module vendoring | |
run: | | |
go mod tidy | |
go mod vendor | |
git diff --exit-code | |
build: | |
strategy: | |
matrix: | |
name: | |
- oldstable | |
- stable | |
- tip | |
include: | |
- name: oldstable | |
version: "1.22" | |
- name: stable | |
version: "1.23" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go v${{ matrix.name }} | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version: ${{ matrix.version }} | |
- name: Checkout code | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 | |
- name: Go code prechecks | |
run: | | |
go build ./... | |
unit-test: | |
strategy: | |
matrix: | |
name: | |
- oldstable | |
- stable | |
- tip | |
include: | |
- name: oldstable | |
version: "1.22" | |
- name: stable | |
version: "1.23" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go v${{ matrix.name }} | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version: ${{ matrix.version }} | |
- name: Checkout code | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 | |
- name: Go code prechecks | |
run: | | |
go test ./... | |
lint: | |
runs-on: ubuntu-latest | |
needs: unit-test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 | |
- name: Run golangci lint | |
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 | |
with: | |
version: v1.61.0 | |
# use our .golangci.yml and configure output to be logged in the GHA, | |
# in addition to annotating the commit. see | |
# https://github.com/golangci/golangci-lint-action/issues/119#issuecomment-981090648 | |
# for output | |
args: --config=.golangci.yml --verbose --out-${NO_FUTURE}format colored-line-number | |
skip-cache: true |