diff --git a/.github/workflows/sandwich.yml b/.github/workflows/sandwich.yml index 6ce3d796..7899d6a1 100644 --- a/.github/workflows/sandwich.yml +++ b/.github/workflows/sandwich.yml @@ -159,27 +159,35 @@ jobs: stack build --stack-yaml ${{matrix.yaml}} --system-ghc --test --bench --no-run-tests --no-run-benchmarks - name: Test (sandwich) + if: always() run: stack test sandwich --stack-yaml ${{matrix.yaml}} --system-ghc - name: Test (sandwich-contexts) + if: always() run: stack test sandwich-contexts --stack-yaml ${{matrix.yaml}} --system-ghc --ta --debug - name: Test (sandwich-contexts-docker) + if: always() run: stack test sandwich-contexts-docker --stack-yaml ${{matrix.yaml}} --system-ghc - name: Test (sandwich-contexts-kubernetes) + if: always() run: stack test sandwich-contexts-kubernetes --stack-yaml ${{matrix.yaml}} --system-ghc - name: Test (sandwich-contexts-minio) + if: always() run: stack test sandwich-contexts-minio --stack-yaml ${{matrix.yaml}} --system-ghc - name: Test (sandwich-hedgehog) + if: always() run: stack test sandwich-hedgehog --stack-yaml ${{matrix.yaml}} --system-ghc - name: Test (sandwich-quickcheck) + if: always() run: stack test sandwich-quickcheck --stack-yaml ${{matrix.yaml}} --system-ghc - name: Test (sandwich-webdriver) + if: always() run: stack test sandwich-webdriver --stack-yaml ${{matrix.yaml}} --system-ghc - uses: actions/cache/save@v4