Skip to content

chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 #1055

chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0

chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 #1055

Workflow file for this run

---
name: CI
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: lint
uses: golangci/golangci-lint-action@v4.0.0
with:
version: v1.52.2
tests-on-unix:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: ubuntu-latest
strategy:
matrix:
golang:
- 'stable'
- 'oldstable'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.golang }}
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- name: Run tests
run: make test