Skip to content

formatting

formatting #9

Workflow file for this run

name: macos
on: [push, pull_request]
jobs:
build:
runs-on: ${{matrix.config.os}}
strategy:
fail-fast: false
matrix:
config:
- { os: macos-latest, dc: ldc-latest }
build: [Debug, Release]
name: "${{matrix.config.os}}:${{matrix.build}}"
steps:
- uses: actions/checkout@v2
- uses: dlang-community/setup-dlang@v1.3.0
- name: 'Build & Test'
run: |
# Build the project, without unittests
dub build --compiler=$DC
# Build and run tests
dub test -b unittest-cov --compiler=$DC