github.com/crewjam/saml@v0.4.14/.github/workflows/test.yml (about) 1 name: test 2 3 on: 4 push: 5 branches: [ 'main' ] 6 pull_request: 7 branches: [ 'main' ] 8 jobs: 9 tests: 10 runs-on: ubuntu-latest 11 strategy: 12 matrix: 13 go: [ '1.19.x', '1.20.x', '1.21.x'] 14 steps: 15 - uses: actions/checkout@v4 16 - uses: actions/setup-go@v4 17 with: 18 go-version: ${{ matrix.go }} 19 - run: go test -v ./...