Skip to content

newer version of go #34

newer version of go

newer version of go #34

Workflow file for this run

---
name: Go test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
check-latest: true
go-version: stable
- name: Install dependencies
run: |
go get ./...
go mod tidy -compat=1.17
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...