Skip to content

chore(deps): bump github.com/testcontainers/testcontainers-go/modules… #174

chore(deps): bump github.com/testcontainers/testcontainers-go/modules…

chore(deps): bump github.com/testcontainers/testcontainers-go/modules… #174

Workflow file for this run

name: golang
on: [push]
jobs:
build:
runs-on: ubuntu-latest
# Service containers to run with `container-job`
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go mod download
- name: Lint
run: go vet ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...