Skip to content

Update module github.com/testcontainers/testcontainers-go to v0.35.0 … #63

Update module github.com/testcontainers/testcontainers-go to v0.35.0 …

Update module github.com/testcontainers/testcontainers-go to v0.35.0 … #63

Workflow file for this run

name: Go Build
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Lint
uses: golangci/golangci-lint-action@v6
- name: Build
run: make build
- name: Test
run: make test