Bump golang.org/x/text from 0.3.7 to 0.3.8 #51
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 | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-go@v5.0.0 | |
with: | |
go-version: '1.21.5' | |
- run: make lint | |
- run: make test | |
# added to test if everything is regenerated without errors | |
- run: make generate |