Skip to content

docs: document current and upcoming drivers #3

docs: document current and upcoming drivers

docs: document current and upcoming drivers #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
name: Test (Go ${{ matrix.go-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [1.24.x, stable]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go-version }}
cache: false
- run: go vet ./...
- run: go test ./...
race:
name: Race test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v7
with:
go-version: stable
cache: false
- run: go test -race ./...
coverage:
name: Coverage
if: github.event_name == 'push'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v7
with:
go-version: stable
cache: false
- run: go test -covermode=atomic -coverprofile=coverage.out ./...
- uses: codecov/codecov-action@v7
with:
files: ./coverage.out
use_oidc: true
fail_ci_if_error: true