Skip to content

fix(mkdocs): fix mkdocs GHA #943

fix(mkdocs): fix mkdocs GHA

fix(mkdocs): fix mkdocs GHA #943

Workflow file for this run

name: Test and coverage
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: go generate -tags tools tools/tools.go
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: go get
run: go get ./...
- name: Run coverage
run: |
gotestsum -- -v -race -coverprofile="coverage.out" -covermode=atomic ./...
env:
VAULT_VERSION: latest
# https://github.com/testcontainers/testcontainers-go/issues/1782
TESTCONTAINERS_RYUK_DISABLED: true
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: FalcoSuessgott/vkv