Added simple build Github action

This commit is contained in:
Jonathan Moallem 2020-11-22 02:34:36 +11:00 committed by GitHub
parent cf73070d85
commit fcf95ff024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

48
.github/workflows/platform-build.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: Platform Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
macOS-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck