Skip to content

Switch to Go 1.22 to get rid of global loop variable bug #1279

Switch to Go 1.22 to get rid of global loop variable bug

Switch to Go 1.22 to get rid of global loop variable bug #1279

Workflow file for this run

name: Build & Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: Checkout code
uses: actions/checkout@v3
- name: Build, Vet & Test
run: |
go build ./...
go vet ./...
go test ./...