Skip to content

build(deps): bump actions/setup-go from 5.0.1 to 5.0.2 #110

build(deps): bump actions/setup-go from 5.0.1 to 5.0.2

build(deps): bump actions/setup-go from 5.0.1 to 5.0.2 #110

Workflow file for this run

name: ci
on:
push:
jobs:
lint-go:
runs-on: ubuntu-latest
env:
GO_TAGS: ''
GO111MODULE: 'on'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: ".go-version"
- name: Setup golangci-lint
run: |-
download=https://raw.githubusercontent.com/golangci/golangci-lint/9a8a056e9fe49c0e9ed2287aedce1022c79a115b/install.sh # v1.52.2
curl -sSf "$download" | sh -s v1.51.2
./bin/golangci-lint version
- run: make check
check-deps-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: ".go-version"
- run: make check-mod
test-go:
runs-on: ubuntu-latest
env:
GO_TAGS: ''
GO111MODULE: 'on'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: ".go-version"
- run: make test
build-go:
runs-on: ubuntu-latest
env:
GO_TAGS: ''
GO111MODULE: 'on'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: ".go-version"
- run: make dev
permissions:
contents: read