feat(deps): bump distroless/static-debian12 from 4a2c1a5
to 2eb0c79
#59
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and coverage | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
cache: false | |
- run: go generate -tags tools tools/tools.go | |
- name: go get | |
run: go get ./... | |
- name: Run coverage | |
run: | | |
gotestsum -- -v -race -coverprofile="coverage.out" -covermode=atomic ./... | |
env: | |
# https://github.com/testcontainers/testcontainers-go/issues/1782 | |
TESTCONTAINERS_RYUK_DISABLED: true | |
- name: Upload coverage to Codecov | |
if: matrix.os == 'ubuntu-latest' | |
run: bash <(curl -s https://codecov.io/bash) |