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 ec4edb7 commit 04da94dCopy full SHA for 04da94d
.github/workflows/ci.yml
@@ -12,20 +12,20 @@ jobs:
12
name: "[${{ matrix.os }} | ${{ matrix.dc }}]"
13
strategy:
14
matrix:
15
- os: [ubuntu-latest, windows-latest, macOS-latest]
+ os: [ubuntu-latest, windows-latest]
16
dc: [dmd-latest, ldc-latest]
17
- arch: [x86_64]
+ include:
18
+ # No support for Apple Silicon from DMD at this time
19
+ - { os: macOS-latest, dc: ldc-latest }
20
runs-on: ${{ matrix.os }}
21
steps:
- - uses: actions/checkout@v3
-
22
+ - uses: actions/checkout@v4
23
- name: Install D compiler
24
uses: dlang-community/setup-dlang@v1
25
with:
26
compiler: ${{ matrix.dc }}
27
- name: Run tests
28
env:
29
DC: ${{matrix.dc}}
- ARCH: ${{matrix.arch}}
30
run: |
31
dub test
0 commit comments