Skip to content

Fixing github workflow build and linter #2

Fixing github workflow build and linter

Fixing github workflow build and linter #2

Workflow file for this run

---
name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17.x', '1.18.x', '1.19.x', '1.20.x', '1.21.x', '1.22.x', '1.23.x']
name: Go ${{ matrix.go }} job
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
# Run testing on the code
- name: Run testing
run: go test -v ./...