This repository was archived by the owner on Jun 19, 2025. It is now read-only.
Add deprecation notice #1865
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: Go | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.2 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Build and Lint | |
| run: | | |
| go build ./... | |
| go vet ./... | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Set up Go" | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.2 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.64.5 | |
| args: --config ./.golangci.yml --timeout=5m | |
| test: | |
| name: Test ${{ matrix.os }} | |
| needs: Lint | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.2 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Test | |
| env: | |
| GO111MODULE: on | |
| run: | | |
| go test ./... | |
| vulncheck: | |
| name: Vulncheck ${{ matrix.go-version }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.2 | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: Get govulncheck | |
| run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
| shell: bash | |
| - name: Run govulncheck | |
| run: govulncheck ./... | |
| shell: bash |