Skip to content

build(deps): Bump golangci/golangci-lint-action from 8 to 9 (#11) #33

build(deps): Bump golangci/golangci-lint-action from 8 to 9 (#11)

build(deps): Bump golangci/golangci-lint-action from 8 to 9 (#11) #33

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: lint and test
jobs:
golangci:
strategy:
matrix:
go-version:
- oldstable
- stable
name: lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.2
- name: test
run: make test