Skip to content

Bump github.com/docker/docker from 24.0.9+incompatible to 26.1.4+incompatible #112

Bump github.com/docker/docker from 24.0.9+incompatible to 26.1.4+incompatible

Bump github.com/docker/docker from 24.0.9+incompatible to 26.1.4+incompatible #112

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
job-test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Set up usql
uses: k1LoW/gh-setup@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
repo: xo/usql
- name: Run lint
uses: reviewdog/action-golangci-lint@v2
with:
fail_on_error: true
golangci_lint_flags: --timeout=5m
- name: Start databases
run: |
docker-compose up -d
sleep 20s
- name: Run tests
run: make ci
- name: Run octocov
uses: k1LoW/octocov-action@v0