24 lines
760 B
YAML
24 lines
760 B
YAML
on: [push, pull_request]
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.22.x, 1.23.x]
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- uses: actions/checkout@v4
|
|
- run: go test ./...
|
|
- run: go test -race ./...
|
|
|
|
# Static checks from this point forward. Only run on one Go version and on
|
|
# Linux, since it's the fastest platform, and the tools behave the same.
|
|
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x'
|
|
run: diff <(echo -n) <(gofmt -s -d .)
|
|
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x'
|
|
run: go vet ./...
|