Skip to content

CI: Fix Go version

CI: Fix Go version #12

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ^1.23
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download modules
run: go mod download
- name: Test
run: go test -v ./...