Skip to content

CI: Better Go version #16

CI: Better Go version

CI: Better Go version #16

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Download modules
run: go mod download
- name: Test
run: go test -v ./...