Move base modules as root, misc changes, prep rewrite #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [ push, pull_request ] | |
# TODO: Expand matrix to configs (with proper names) | |
# Tests ensures the project builds and executes unittest. | |
# The entry points are rather minimal. | |
jobs: | |
Aliceserver: | |
strategy: | |
matrix: | |
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022 ] | |
dc: [ dmd-latest, ldc-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup D compiler | |
uses: dlang-community/setup-dlang@v2 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Test | |
run: dub test |