Skip to content

Merge pull request #145 from tijn/add-env-flag #108

Merge pull request #145 from tijn/add-env-flag

Merge pull request #145 from tijn/add-env-flag #108

Workflow file for this run

name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22.x', '1.23.x' ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test
run: go test -v -race ./...