Skip to content

Releases: dlang-community/setup-dlang

v0.1.1

12 Sep 13:46
Compare
Choose a tag to compare
Do not install deps in release branches

Most basic working version

12 Sep 13:31
Compare
Choose a tag to compare

Usage example:

name: Test My D Project
on: [push, pull_request]

jobs:
    test:
        name: Test
        strategy:
            matrix:
                os: [ubuntu-latest, windows-latest, macOS-latest]
                dc: [dmd-2.088.0, ldc-1.17.0]
        runs-on: ${{ matrix.os }}
        steps:
            - uses: actions/checkout@master

            - name: Install D compiler
              uses: mihails-strasuns/setup-dlang@v0
              with:
                  compiler: ${{ matrix.dc }}

            - name: Unit tests
              run: dub -q test