From 9eeacdb3c42e09e84eef5d9c1f2896f7dadef1fa Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sun, 26 Mar 2023 13:21:30 +0200 Subject: [PATCH] Update d.yml --- .github/workflows/d.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/d.yml b/.github/workflows/d.yml index 785a6e36..8e30a940 100644 --- a/.github/workflows/d.yml +++ b/.github/workflows/d.yml @@ -43,7 +43,26 @@ jobs: with: name: tbin path: tlang - + + unittests: + needs: build + name: Unit tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Download math result for job 1 + uses: actions/download-artifact@v3 + with: + name: tbin + + - name: DUB unit tests with coverage + run: dub test --coverage + + - uses: actions/upload-artifact@v3 + with: + name: coverage files + path: \*.lst + typecheck: needs: build name: Typechecking tests