We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8bb28 commit 89301e6Copy full SHA for 89301e6
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: ci
2
+
3
+on:
4
+ push
5
6
+jobs:
7
+ build-and-run:
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-22.04, ubuntu-24.04]
11
+ runs-on: ${{ matrix.os }}
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ - shell: bash
15
+ run: |
16
+ sudo apt-get -q update
17
+ sudo apt-get install -yq \
18
+ musl-dev
19
+ - uses: dlang-community/setup-dlang@v2
20
+ with:
21
+ compiler: ldc
22
+ - run: make build-ldc-runtime
23
+ - run: make run
0 commit comments