build(deps): bump the gomod group with 1 update #312
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: checks | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- v2 | |
pull_request: | |
jobs: | |
golangci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout=3m | |
pre-commit: | |
runs-on: ubuntu-22.04 | |
env: | |
# These hooks will run separately in github actions | |
SKIP: golangci-lint | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go environment | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- uses: actions/setup-python@v4 | |
- name: Run pre-commit checks on changes files | |
uses: pre-commit/action@v3.0.0 |