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 15119bc commit 9dd3049Copy full SHA for 9dd3049
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: OpenLibm CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ os:
17
+ - ubuntu-latest
18
+ - macos-latest
19
+ - windows-latest
20
+ arch:
21
+ - x64
22
+ - x32
23
+ - armv7
24
+ - aarch64
25
26
+ steps:
27
+ - uses: actions/checkout@v2
28
+ - name: make
29
+ run: make
30
+ - name: make test
31
+ run: make test
0 commit comments