Create ci.yml

This commit is contained in:
Viral B. Shah 2021-09-08 13:41:52 -04:00 committed by GitHub
parent 15119bcec3
commit 9dd3049e93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

31
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: OpenLibm CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
arch:
- x64
- x32
- armv7
- aarch64
steps:
- uses: actions/checkout@v2
- name: make
run: make
- name: make test
run: make test