-
Notifications
You must be signed in to change notification settings - Fork 38
46 lines (38 loc) · 862 Bytes
/
Copy pathci.yml
File metadata and controls
46 lines (38 loc) · 862 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
39
40
41
42
43
44
45
46
name: CI
on:
push:
pull_request:
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- windows-2022
- macos-14
dc:
- dmd-2.111.0
- dmd-2.099.1
- ldc-1.41.0
- ldc-1.29.0
exclude:
- dc: dmd-2.099.1
os: macos-14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install ${{ matrix.dc }}
uses: dlang-community/setup-dlang@v2
with:
compiler: ${{ matrix.dc }}
- name: "Posix: Run tests"
if: runner.os != 'Windows'
run: build/ci.sh
env:
TERM: xterm
- name: "Windows: Run tests"
if: runner.os == 'Windows'
run: build\ci.bat
- uses: codecov/codecov-action@v5.1.2