name: Go on: push: branches: [ master ] pull_request: branches: [ master ] permissions: contents: read jobs: build: runs-on: ubuntu-latest strategy: matrix: go: [ '1.21', '1.20', '1.13' ] steps: - uses: actions/checkout@v3 - name: Set up Go uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} - name: Build run: go build -v ./... - name: Test run: go test -v ./...