Update module golang.org/x/mod to v0.35.0 #904
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test-and-lint | |
| on: | |
| push: | |
| pull_request_target: | |
| permissions: | |
| contents: read | |
| jobs: | |
| gotest: | |
| # description: "Runs `go test` against 3 operating systems." | |
| strategy: | |
| matrix: | |
| os: [ubuntu, macos, windows] | |
| runs-on: ${{ matrix.os }}-latest | |
| steps: | |
| - name: checkout PR head (pull_request_target) | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: checkout branch (push) | |
| if: github.event_name == 'push' | |
| uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 'stable' | |
| - name: go-generate | |
| run: go generate ./... | |
| - name: go-test | |
| run: | | |
| go test ./pkg/... | |
| golangci-darwin: | |
| # description: "Runs golangci-lint on macos against freebsd and macos." | |
| strategy: | |
| matrix: | |
| os: [freebsd, darwin] | |
| name: golangci-lint | |
| runs-on: macos-latest | |
| env: | |
| GOOS: ${{ matrix.os }} | |
| steps: | |
| - name: checkout PR head (pull_request_target) | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: checkout branch (push) | |
| if: github.event_name == 'push' | |
| uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 'stable' | |
| - name: go-generate | |
| run: GOOS=darwin go generate ./... | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.11 | |
| golangci-linux: | |
| # description: "Runs golangci-lint on linux against linux and windows." | |
| strategy: | |
| matrix: | |
| os: [linux, windows] | |
| name: golangci-lint | |
| runs-on: ubuntu-latest | |
| env: | |
| GOOS: ${{ matrix.os }} | |
| steps: | |
| - name: checkout PR head (pull_request_target) | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: checkout branch (push) | |
| if: github.event_name == 'push' | |
| uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 'stable' | |
| - name: go-generate | |
| run: GOOS=linux go generate ./... | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.11 |