diff --git a/.github/workflows/default.cue b/.github/workflows/default.cue index 889d2822b..965bb6cc4 100644 --- a/.github/workflows/default.cue +++ b/.github/workflows/default.cue @@ -7,10 +7,18 @@ common.#Workflow & { on: ["push"] jobs: test: { steps: [ for step in common.#BuildSteps {step}] + [{ - name: "Run structural tests" + name: "Run self-gen test" run: """ hof flow @test/gen ./test.cue + """ + },{ + name: "Run render tests" + run: """ hof flow @test/render ./test.cue + """ + },{ + name: "Run lib/structural tests" + run: """ hof flow @test/st ./test.cue """ }] diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 332318848..8c3ea099d 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -22,9 +22,10 @@ jobs: uses: actions/checkout@v2 - name: Build CLI run: go install ./cmd/hof - - name: Run structural tests - run: |- - hof flow @test/gen ./test.cue - hof flow @test/render ./test.cue - hof flow @test/st ./test.cue + - name: Run self-gen test + run: hof flow @test/gen ./test.cue + - name: Run render tests + run: hof flow @test/render ./test.cue + - name: Run lib/structural tests + run: hof flow @test/st ./test.cue services: {}