We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548e76f commit 55349b8Copy full SHA for 55349b8
.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
.travis.yml
0 commit comments