Skip to content

patch: bump github actions builders to nodev20 #38

patch: bump github actions builders to nodev20

patch: bump github actions builders to nodev20 #38

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v5
with:
go-version: ^1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...