Skip to content

Workflows should use go.mod for Go version #750

Workflows should use go.mod for Go version

Workflows should use go.mod for Go version #750

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
run: go test -v ./...