Skip to content

Added GDC to github action compiler matrix. #14

Added GDC to github action compiler matrix.

Added GDC to github action compiler matrix. #14

Workflow file for this run

name: Run all D Tests
on: [push, pull_request]
jobs:
test:
name: Dub Tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-13]
dc: [dmd-latest, ldc-latest, gdc-12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install D compiler
uses: dlang-community/setup-dlang@v2
with:
compiler: ${{ matrix.dc }}
- name: Run tests
run: dub -q test