chore(deps): update registry.access.redhat.com/ubi9/go-toolset docker tag to v9 #17
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: Pre-commit checks | |
| on: | |
| pull_request: | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Go environment | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.22' | |
| - name: Install required tools | |
| run: | | |
| pip install pre-commit | |
| make bootstrap | |
| go mod tidy | |
| - name: Run pre-commit checks | |
| run: make pre-commit |