Skip to content

Support for Go1.24

Support for Go1.24 #75

Workflow file for this run

name: Go test
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: "./go.mod"
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: go mod download
- name: Test
run: go test -v .