Added missing test namespace in the scheduler update test execution #382
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
name: Test | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v20 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: tstr | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Bring up dev env | |
run: nix develop -c dev/up | |
- name: Run go tests | |
run: nix develop -c dev/test | |
- name: Cleanup dev env | |
if: success() || failure() | |
run: nix develop -c dev/down |