refact: export env variables to show up in documentation #31
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
# This workflow performs unit testing on the utility package | |
name: Unit Testing | |
on: | |
pull_request: | |
paths: | |
- 'env/**' | |
- 'utils/**' | |
- 'go.*' | |
- '.github/workflows/unit-testing.yml' | |
# manual trigger | |
workflow_dispatch: | |
jobs: | |
test-utils: | |
name: Test Utils | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.* | |
- run: go test ./utils -v | |
# Run again several times to catch possible race conditions | |
- run: go test ./utils -count=10 |