Skip to content

Added missing test namespace in the scheduler update test execution #382

Added missing test namespace in the scheduler update test execution

Added missing test namespace in the scheduler update test execution #382

Workflow file for this run

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