Skip to content

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.3+incompatible #8

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.3+incompatible

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.3+incompatible #8

name: run-backend-tests
on:
push:
branches:
- v1
- main
pull_request:
branches:
- v1
- main
schedule:
- cron: '0 9 1 * *'
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
questdb:
- 7.3.9
- latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Build
run: go build -v ./...
- name: Run backend tests
run: QUESTDB_VERSION=${{ matrix.questdb }} go test -v ./...