Skip to content

Update to go1.24 and update golang.org/x/net (#66) #86

Update to go1.24 and update golang.org/x/net (#66)

Update to go1.24 and update golang.org/x/net (#66) #86

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v2
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
go mod download
- name: Build
run: make
- name: Test
run: make test