would you rather have infinite gold coins but you have dig a treasure chest in a public park every day youve made a transaction with gold or infinite silver coins but you can only drink wine and bathe in olive oil like the romans #643
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: x86_64 | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Dub Tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
dc: | |
- dmd-latest | |
- dmd-2.097.0 | |
- dmd-2.096.1 | |
- dmd-2.095.1 | |
- dmd-2.094.2 | |
- ldc-latest | |
- ldc-1.33.0 | |
- ldc-1.32.2 | |
- ldc-1.31.0 | |
- ldc-1.30.0 | |
- ldc-1.29.0 | |
- ldc-1.28.1 | |
- ldc-1.27.1 | |
- ldc-1.26.0 | |
- ldc-1.25.1 | |
- ldc-1.24.0 | |
exclude: | |
- dc: dmd-latest | |
os: macOS-latest | |
- dc: dmd-2.097.0 | |
os: macOS-latest | |
- dc: dmd-2.096.1 | |
os: macOS-latest | |
- dc: dmd-2.095.1 | |
os: macOS-latest | |
- dc: dmd-2.094.2 | |
os: macOS-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Unittest with default configuration | |
run: dub test | |
- name: Unittest with unittest-release configuration | |
run: dub test -b unittest-release | |
- name: Unittest with unittest-inst configuration | |
run: dub test -b unittest-inst | |
- name: Unittest with unittest-release-inst configuration | |
run: dub test -b unittest-release-inst | |