Bump nanoid from 3.3.7 to 3.3.8 in /docs/website (#860) #84
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: 'go test-coverage report' | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '!*' # Do not execute on tags | |
pull_request: | |
paths: | |
- '!*.MD' | |
- '!docs/**' | |
jobs: | |
coverage: | |
name: coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5.0.0 | |
with: | |
go-version: '1.22' | |
- uses: actions/checkout@v4 | |
- name: 'test & report' | |
run: | | |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | |
chmod +x ./cc-test-reporter | |
./cc-test-reporter before-build | |
make test-coverage | |
./cc-test-reporter after-build --debug --prefix "github.com/coupergateway/couper" --exit-code $? | |
env: | |
CC_TEST_REPORTER_ID: 8b070e62baadacda6fdfd7bac69c3f46795b7cae456073982599e9dd87c66ce9 |