name: Go on: push: branches: [ "master" ] jobs: build: runs-on: ubuntu-latest strategy: matrix: go-version: ['1.21', '1.22'] steps: - uses: actions/checkout@v3 - name: Set up Go uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - name: Install Staticcheck run: go install honnef.co/go/tools/cmd/staticcheck@latest - name: Build run: go build -v ./cmd/gotelem - name: Test run: go test -v ./... - name: Vet run: go vet ./... - name: Staticcheck run: staticcheck ./...