Files
filament/.github/workflows/continuous-integration.yml
2019-08-30 14:44:47 -07:00

24 lines
494 B
YAML

name: Continuous Integration
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Run build script
run: |
WORKFLOW_OS=`echo \`uname\` | sed "s/Darwin/mac/" | tr [:upper:] [:lower:]`
export TARGET
cd build/$WORKFLOW_OS && ./build.sh
env:
target: presubmit