use single quotes for text #228
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: Go | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - "release-**" | |
| pull_request: | |
| branches: | |
| - main | |
| - "release-**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - name: Build | |
| run: make | |
| - name: Test ChaiSQL | |
| run: go test -race -timeout=2m ./... | |
| - name: SQL tests | |
| run: cd ./sqltests && go test -race -timeout=2m ./... && cd - | |
| - name: Test Chai CLI | |
| run: cd ./cmd/chai && go test -race ./... && cd - |