Skip to content

Allow calling out breaking changes in releases #325

Allow calling out breaking changes in releases

Allow calling out breaking changes in releases #325

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ['>=1.23', '1.22']
trino: ['latest', '372']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go test -v -race -timeout 2m ./... -trino_image_tag=${{ matrix.trino }}