Skip to content

[gomod] Bump github.com/testcontainers/testcontainers-go/modules/compose from 0.39.0 to 0.41.0 #109

[gomod] Bump github.com/testcontainers/testcontainers-go/modules/compose from 0.39.0 to 0.41.0

[gomod] Bump github.com/testcontainers/testcontainers-go/modules/compose from 0.39.0 to 0.41.0 #109

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: "1.26"
GO_LANG_CI_LINT_VERSION: "v2.10.1"
name: run tests
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run linters
uses: golangci/golangci-lint-action@v8
with:
version: ${{ env.GO_LANG_CI_LINT_VERSION }}
test:
runs-on: ubuntu-latest
timeout-minutes: 5
services:
docker:
image: docker:dind
options: --privileged
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: make test
coverage:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
- name: Unit tests with coverage
run: |
go test -v -coverprofile=coverage.txt ./stream/...
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}