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 4655ae2 commit 68dc8d4Copy full SHA for 68dc8d4
1 file changed
.github/workflows/ci.yml
@@ -6,15 +6,21 @@ jobs:
6
name: Unit tests
7
strategy:
8
matrix:
9
- os: [ubuntu-20.04, windows-2019, macOS-11]
10
- dc: [dmd-2.098.1, ldc-1.28.1]
+ os:
+ - ubuntu-24.04
11
+ - windows-2022
12
+ - macos-13
13
+ dc:
14
+ - dmd-2.098.
15
+ - dmd-2.111.0
16
+ - ldc-1.28.1
17
18
runs-on: ${{ matrix.os }}
19
steps:
- - uses: actions/checkout@v2
20
+ - uses: actions/checkout@v4
21
22
- name: Install D compiler
- uses: dlang-community/setup-dlang@v1.1.0
23
+ uses: dlang-community/setup-dlang@v2
24
with:
25
compiler: ${{ matrix.dc }}
26
@@ -24,7 +30,7 @@ jobs:
30
dub test
31
dub run --root mir-integration-example
32
27
- - uses: codecov/codecov-action@v2.1.0
33
+ - uses: codecov/codecov-action@v5.1.2
28
34
29
35
integration-test:
36
name: Integration tests
0 commit comments