Skip to content

reduce complexities highlighted by revive 1.3.4 and test under Go 1.21 #26

reduce complexities highlighted by revive 1.3.4 and test under Go 1.21

reduce complexities highlighted by revive 1.3.4 and test under Go 1.21 #26

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.20', '1.21' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: make
- name: Test
run: make test