Skip to content

Commit 7b58cb5

Browse files
committed
Add CI
1 parent 4b554ed commit 7b58cb5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches:
7+
- master
8+
9+
jobs:
10+
test:
11+
name: dub test
12+
strategy:
13+
matrix:
14+
dc: [dmd-latest, ldc-latest]
15+
runs-on:
16+
ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: dlang-community/setup-dlang@v1
20+
with:
21+
compiler: ${{ matrix.dc }}
22+
- uses: jcbhmr/setup-wasm-tools@v2
23+
- run: dub test

0 commit comments

Comments
 (0)