Fix Windows line endings #100
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: Run tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Run unittests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
dc: [dmd-latest, ldc-latest, dmd-2.104.0, ldc-1.34.0] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Run tests | |
run: dub test --arch=x86_64 | |
- name: Build app | |
run: dub build --arch=x86_64 |