Fix set cookie user name #178
Workflow file for this run
This file contains hidden or 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: Unit Tests | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| unit-tests: | |
| name: Run unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: '^1.22' | |
| - name: Install dependencies | |
| #run: go mod tidy | |
| run: echo "Installing dependencies ..." | |
| - name: Run unit tests | |
| #run: go test ./tests/unit/... | |
| run: echo "Running unit tests ..." |