name: Build and Test on: [push, pull_request] jobs: build: name: Go CI runs-on: ubuntu-latest strategy: matrix: go: ["1.23", "1.24"] steps: - name: Set up Go uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 #v5.3.0 with: go-version: ${{ matrix.go }} - name: Check out source uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2 - name: Build run: go build ./... - name: Install Linters run: "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.5" - name: Test and Lint run: ./run_tests.sh