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