Skip to content

fix(deps): update testcontainers-go monorepo to v0.42.0 #255

fix(deps): update testcontainers-go monorepo to v0.42.0

fix(deps): update testcontainers-go monorepo to v0.42.0 #255

Workflow file for this run

name: Golang-ci
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint-and-test:
name: lint & test
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Platform info
run: go version
- name: Run go mod tidy
run: go mod tidy -diff
- name: Install & build
run: make
- name: Run lint
run: make lint
- name: Run tests
run: make test