chore(deps): bump golangci/golangci-lint-action from 6.0.1 to 6.1.0 (… #1073
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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/[email protected] | |
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 |