Update d.yml

This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-26 13:21:30 +02:00 committed by GitHub
parent 43677cbcfb
commit 9eeacdb3c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 1 deletions

View File

@ -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