Skip to content

Go tests GitHub Actions workflow #1

Go tests GitHub Actions workflow

Go tests GitHub Actions workflow #1

Workflow file for this run

name: Go tests
on: [push]
jobs:
test:
strategy:
matrix:
go-version: ['1.22', '1.21']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- run: go test -v -race ./...