Skip to content

chore(deps): update actions/setup-go action to v6 #232

chore(deps): update actions/setup-go action to v6

chore(deps): update actions/setup-go action to v6 #232

Workflow file for this run

name: Go
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: make test