build(deps): bump the go group with 2 updates #974
Workflow file for this run
This file contains 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 | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
pull_request: null | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 | |
with: | |
go-version: 1.22.x | |
- name: set env vars | |
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
fetch-depth: 0 | |
- name: cache go binaries | |
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 | |
id: cache-go-bin | |
with: | |
path: ~/go/bin | |
key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }} | |
restore-keys: ${{ runner.os }}-go-bin | |
- name: Lint | |
run: make lint | |
- name: test | |
run: make test | |
precommit: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 | |
with: | |
go-version: 1.22.x | |
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c | |
with: | |
python-version: "3.x" | |
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd | |
with: | |
extra_args: --show-diff-on-failure --from-ref ${{ | |
github.event.pull_request.base.sha }} --to-ref ${{ | |
github.event.pull_request.head.sha }} | |
env: | |
SKIP: lint |