Skip to content

chore: update linter configuration #147

chore: update linter configuration

chore: update linter configuration #147

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: {}
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [stable, oldstable]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Run tests
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go-version }}
- name: Check and get dependencies
run: go mod tidy
- run: make test