Skip to content

refact: export env variables to show up in documentation #31

refact: export env variables to show up in documentation

refact: export env variables to show up in documentation #31

Workflow file for this run

# 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