Skip to content
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@v3
- 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"
- "1.23rc2"
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" ./...