Skip to content

Feature: Add support for multiple result sets through the driver.RowsNextResultSet interface #12

Feature: Add support for multiple result sets through the driver.RowsNextResultSet interface

Feature: Add support for multiple result sets through the driver.RowsNextResultSet interface #12

Workflow file for this run

name: Test
on: [pull_request]
concurrency:
group: test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Test
run: go test ./...
- name: Test Race
run: go test -race ./...