This repository was archived by the owner on Apr 10, 2026. It is now read-only.
chore: update actions/checkout action to v6.0.2 #600
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: setup golang | |
| uses: actions/setup-go@v6.2.0 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: run all tests | |
| run: go test -cover -v ./... | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: run revive | |
| uses: morphy2k/revive-action@v2.7.8 | |
| with: | |
| exclude: "./vendor/..." |