Skip to content

Commit 9dd3049

Browse files
authored
Create ci.yml
1 parent 15119bc commit 9dd3049

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: OpenLibm CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
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

Comments
 (0)