Skip to content

Fixed Bug #20: Update github actions to v4 #11

Fixed Bug #20: Update github actions to v4

Fixed Bug #20: Update github actions to v4 #11

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]
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