Skip to content

Commit

Permalink
Use 'unittest-cov-ctfe' build type in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-zherikov committed Dec 18, 2023
1 parent 2454a72 commit a907d08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ jobs:
compiler: ${{ matrix.dc }}

- name: Run tests
run: dub test --build=unittest-cov --verbose
run: dub test --build=unittest-cov-ctfe --verbose

- name: Run tests (dip1000)
env:
DFLAGS: -dip1000
run: dub test --build=unittest-cov --verbose
run: dub test --build=unittest-cov-ctfe --verbose

- name: Run tests (in)
env:
DFLAGS: -preview=in
run: dub test --build=unittest-cov --verbose
run: dub test --build=unittest-cov-ctfe --verbose

- name: Run tests (dip1000 & in)
env:
DFLAGS: -dip1000 -preview=in
run: dub test --build=unittest-cov --verbose
run: dub test --build=unittest-cov-ctfe --verbose

- name: Build examples
run: dub --root examples build --parallel --verbose
Expand Down

0 comments on commit a907d08

Please sign in to comment.