We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b314137 commit 3b93022Copy full SHA for 3b93022
.github/workflows/ci.yml
@@ -3,7 +3,7 @@ name: CI
3
on: [push]
4
5
jobs:
6
- build:
+ build-linux:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v4
@@ -15,3 +15,15 @@ jobs:
15
run: ninja -v -C build
16
- name: Test
17
run: meson test -v -C build
18
+ build-windows:
19
+ runs-on: windows-latest
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - name: Install dependencies
23
+ run: pip install ninja meson
24
+ - name: Configure
25
+ run: mkdir build; meson setup --vsenv -Dbuildtype=debugoptimized -Dwith_encode2=true build
26
+ - name: Build
27
+ run: ninja -v -C build
28
+ - name: Test
29
+ run: meson test -v -C build
0 commit comments