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 f863c98 commit 89bfb58Copy full SHA for 89bfb58
.github/workflows/c-cpp.yml
@@ -0,0 +1,40 @@
1
+name: Build
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ linux:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Checkout code
9
+ uses: actions/checkout@v4
10
+ - name: Build with meson
11
+ run: |
12
+ pip install meson
13
14
+ meson setup build
15
+ meson compile -C build
16
17
+ macos:
18
+ runs-on: macos-latest
19
20
21
22
23
24
25
26
27
28
29
+ windows:
30
+ runs-on: windows-latest
31
32
33
34
35
36
37
38
39
40
0 commit comments