Skip to content

chore(deps): bump actions/checkout from 3 to 6 #12

chore(deps): bump actions/checkout from 3 to 6

chore(deps): bump actions/checkout from 3 to 6 #12

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: golangci-lint
jobs:
golangci:
strategy:
matrix:
go-version:
- "1.20"
- "1.21"
- "oldstable"
- "stable"
name: lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v2.5
- name: test
run: make test