Skip to content

chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 #131

chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1

chore(deps): bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 #131

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
flags: [""]
arch:
- amd64
runner:
- ubuntu-latest
- macos-latest
- windows-latest
go:
- 1.16
- 1.17
- 1.18
include:
- arch: 386
runner: ubuntu-latest
go: 1.18
- arch: amd64
runner: ubuntu-latest
flags: "-race"
go: 1.18
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v4
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
key: test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-
- name: Run tests
env:
GOARCH: ${{ matrix.arch }}
GOFLAGS: ${{ matrix.flags }}
run: go test --timeout 5m ./...