Skip to content

chore(deps): bump github.com/testcontainers/testcontainers-go from 0.31.0 to 0.32.0 #5

chore(deps): bump github.com/testcontainers/testcontainers-go from 0.31.0 to 0.32.0

chore(deps): bump github.com/testcontainers/testcontainers-go from 0.31.0 to 0.32.0 #5

Workflow file for this run

name: golang
on:
push:
branches: [main]
pull_request:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache-dependency-path: go.mod
- name: Golangci Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: ./...
- name: Build API
run: go build -o .bin/onasty ./cmd/server/
- name: Unit tests
run: go test -v --short ./...
- name: e2e tests
run: go test -v ./e2e/