Fix Panic when the underlying data type of the array differs from value #61
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: Standard Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
dependency-review: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@v1 | |
standard-go-test: | |
name: go${{ matrix.go-version }}/${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go-version: | |
- "1.21" | |
- "1.22" | |
os: | |
- "ubuntu-latest" | |
- "macos-latest" | |
- "windows-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test | |
if: ${{ matrix.os != 'windows-latest' }} | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: 0 | |
run: | | |
go test -v -p 1 -race -cover -tags "sqlite,integration" ./... | |
- name: Short Test | |
if: ${{ matrix.os == 'windows-latest' }} | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: 0 | |
run: | | |
go test -v -p 1 -tags "sqlite,integration" ./... |