enable SSLKEYLOGFILE #94
Workflow file for this run
This file contains hidden or 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: Run all D Tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Dub Tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest] | |
| dc: [dmd, ldc] | |
| exclude: | |
| - { os: macOS-latest, dc: dmd } | |
| # You have to exclude gdc configurations from non-linux OSes | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install D compiler | |
| uses: dlang-community/setup-dlang@v2 | |
| with: | |
| compiler: ${{ matrix.dc }} | |
| dub: latest | |
| - name: Run tests | |
| shell: bash | |
| run: dub -q test |