chore(deps): bump the go group with 2 updates #1909
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 and lint | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'CODE_OF_CONDUCT.md' | |
| - 'README.md' | |
| - 'Contributing.md' | |
| - '.github/workflows/**' | |
| workflow_call: | |
| push: | |
| paths-ignore: | |
| - '.github/workflows/**' | |
| branches: | |
| - main | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| jobs: | |
| run-test-suite: | |
| runs-on: large_runner | |
| steps: | |
| - name: Self Hosted Runner Post Job Cleanup Action | |
| uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563 | |
| - name: Checkout | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 | |
| - name: Setup Go | |
| uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c | |
| with: | |
| go-version-file: '${{ github.workspace }}/go.mod' | |
| - name: Restore Go cache | |
| uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 | |
| with: | |
| path: /home/runner/work/_temp/_github_home/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| - name: Run lint | |
| run: make lint | |
| - name: Run tests | |
| run: make test |