bugfix: more safety when parsing table IDs and table entity IDs, also accept table IDs in legacy and newer formats #171
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: Go Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/** | |
- go.mod | |
- go.sum | |
- storage/** | |
- testhelpers/** | |
- version/** | |
env: | |
GO_VERSION: "1.21.x" | |
jobs: | |
go_test: | |
name: go test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- run: | | |
go mod download | |
go test -v ./... -timeout=300s |