Skip to content

build(deps): bump actions/checkout from 5 to 6 #39

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #39

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@v6
- 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