Skip to content

Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible in the go_modules group #257

Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible in the go_modules group

Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible in the go_modules group #257

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- '**'
name: Tests with spanner emulator
jobs:
tests:
runs-on: ubuntu-latest
services:
spanner:
env:
SPANNER_INSTANCE_ID: ${{env.SPANNER_INSTANCE_ID}}
SPANNER_PROJECT_ID: ${{env.SPANNER_PROJECT_ID}}
image: roryq/spanner-emulator:latest
ports:
- 9010:9010
dind:
image: docker:23.0-rc-dind-rootless
ports:
- 2375:2375
env:
SPANNER_INSTANCE_ID: inst
SPANNER_PROJECT_ID: proj
SPANNER_EMULATOR_HOST: localhost:9010
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
run: go test ./... -v