Merge pull request #188 from arrow2nd/dependabot/go_modules/golang.or… #327
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: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Golang | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ">=1.20.0" | |
| - name: Run go vet | |
| run: go vet -v ./... | |
| - name: Run go test | |
| run: go test -v -race ./... |