Skip to content

Bump actions/setup-go from 5.0.2 to 5.2.0 in the all group across 1 directory #31

Bump actions/setup-go from 5.0.2 to 5.2.0 in the all group across 1 directory

Bump actions/setup-go from 5.0.2 to 5.2.0 in the all group across 1 directory #31

Workflow file for this run

# Source: https://github.com/actions/starter-workflows/blob/main/ci/go.yml
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a #v5.2.0
with:
go-version-file: go.mod
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 #v6.1.1
with:
version: latest
only-new-issues: true
test:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: ./go.mod
- name: Set up gotestfmt
uses: GoTestTools/gotestfmt-action@v2
- name: Run tests
run: |
set -euo pipefail
go test -json -v ./... 2>&1 | gotestfmt