chore(deps): bump github.com/stmcginnis/gofish from 0.15.0 to 0.19.0 #43
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-and-lint | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: [master] | |
jobs: | |
test-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v3 | |
- uses: actions/setup-go@v5 | |
- name: Run pre-commit with linters | |
uses: pre-commit/[email protected] | |
- name: Run tests | |
run: go test -json > TestResults.json | |
- name: Upload Go test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Upload Go results | |
path: TestResults.json |