Skip to content

Update

Update #15

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Dub Test
strategy:
matrix:
os:
- ubuntu-22.04
- windows-2019
- macos-11
dc:
- dmd-2.108.0
- dmd-2.100.0
- ldc-1.37.0
- ldc-1.29.0
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install D compiler
uses: dlang-community/[email protected]
with:
compiler: ${{ matrix.dc }}
- name: Test
run: dub test -q --build=unittest-cov
- name: Build binary
run: dub build -q
- uses: codecov/[email protected]