There was an error while loading. Please reload this page.
1 parent 521220c commit 2f41a65Copy full SHA for 2f41a65
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: Test
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ compiler: [gcc, clang]
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - run: |
14
+ sudo apt-get update
15
+ sudo apt-get install -y build-essential
16
+ - env:
17
+ CC: ${{ matrix.compiler }}
18
+ run: make test
19
20
+ test-macos:
21
+ runs-on: macos-latest
22
23
24
+ - run: make test
0 commit comments