Skip to main content

.github/workflows/test.yml

1name: Go
3on: [push]
5jobs:
6 build:
8 runs-on: ubuntu-latest
9 strategy:
10 matrix:
11 go-version:
12 - "1.25"
14 steps:
15 - uses: actions/checkout@v5
17 - name: Setup Go ${{ matrix.go-version }}
18 uses: actions/setup-go@v5
19 with:
20 go-version: ${{ matrix.go-version }}
22 - name: Run tests
23 run: go test