Skip to content

feat: remove golangci-lint mode #34

feat: remove golangci-lint mode

feat: remove golangci-lint mode #34

Workflow file for this run

name: testing
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ stable, oldstable ]
steps:
- name: Check out
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: make test