Skip to content

chore: update GitHub Actions versions in workflow files #94

chore: update GitHub Actions versions in workflow files

chore: update GitHub Actions versions in workflow files #94

Workflow file for this run

name: Run CI Lint
on: push
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.16, 1.17, 1.18, 1.19, '1.20']
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
TESTTAGS: ${{ matrix.test-tags }}
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Checkout Code
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51.1
args: --verbose --timeout 10m