-
Notifications
You must be signed in to change notification settings - Fork 6
38 lines (33 loc) · 974 Bytes
/
d.yml
File metadata and controls
38 lines (33 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: D
on: [push, pull_request]
jobs:
test:
name: Trial Tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
dc: [ldc-latest, dmd-latest, dmd-2.104.0, dmd-2.100.0, ldc-1.35.0, ldc-1.30.0]
exclude:
- os: macos-latest
dc: dmd-latest
- os: macos-latest
dc: dmd-2.104.0
- os: macos-latest
dc: dmd-2.100.0
- os: macos-latest
dc: ldc-1.30.0
- os: macos-latest
dc: ldc-1.35.0
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 test