We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65147fc commit e098b8eCopy full SHA for e098b8e
.github/workflows/make.yml
@@ -8,12 +8,20 @@ on:
8
9
jobs:
10
build:
11
+ strategy:
12
+ matrix:
13
+ os: [ubuntu-latest, windows-latest, macOS-latest]
14
+ dc: [dmd-latest, ldc-latest, dmd-2.085.0, ldc-1.17.0]
15
+ exclude:
16
+ - { os: macOS-latest, dc: dmd-2.085.0 }
17
- runs-on: ubuntu-latest
-
18
+ runs-on: ${{ matrix.os }}
19
steps:
20
- uses: actions/checkout@v2
- - uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7
21
+ - name: Install D compiler
22
+ uses: dlang-community/setup-dlang@v1
23
+ with:
24
+ compiler: ${{ matrix.dc }}
25
- name: make tree-query
26
run: make
27
- name: make tree-query-build
0 commit comments