Skip to content

Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #135

Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1

Bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #135

Workflow file for this run

name: main
on:
push:
branches:
- master
pull_request:
jobs:
verify-root:
name: Verify root module
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: |
go mod download
go mod vendor
- name: Run linters
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
with:
version: v2.1
args: --verbose
- name: Run tests
run: |
go test -v ./...
verify-gopgv9:
name: Verify gopgv9
runs-on: ubuntu-latest
defaults:
run:
working-directory: gopgv9
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: |
go mod download
go mod vendor
- name: Run linters
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
with:
version: v2.1
working-directory: gopgv9
args: --verbose
- name: Run tests
run: |
go test -v ./...
verify-gopgv10:
name: Verify gopgv10
runs-on: ubuntu-latest
defaults:
run:
working-directory: gopgv10
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: |
go mod download
go mod vendor
- name: Run linters
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
with:
version: v2.1
working-directory: gopgv10
args: --verbose
- name: Run tests
run: |
go test -v ./...