Skip to content

Commit

Permalink
github: workflows: add more test steps
Browse files Browse the repository at this point in the history
Signed-off-by: Luís Ferreira <contact@lsferreira.net>
  • Loading branch information
ljmf00 committed Jun 4, 2021
1 parent 65a6d34 commit 50c8fba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ jobs:
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dlang-community/d2sqlite3/master/lib/win64/sqlite3.lib -OutFile ${{ github.workspace }}\sqlite3.lib
- name: Run tests
run: dub test --build=cov
run: |
# Test in release mode
dub test --build=release
# Coverage
dub test --build=cov
dub test --build=unittest-cov
- name: Upload coverage
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit 50c8fba

Please sign in to comment.