From ff31b0d892c6336c2d008ed2d774423428cfea20 Mon Sep 17 00:00:00 2001 From: rusefi Date: Wed, 20 Nov 2019 21:36:14 -0500 Subject: [PATCH] build simulator on GH --- .github/workflows/build-simulator.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build-simulator.yaml diff --git a/.github/workflows/build-simulator.yaml b/.github/workflows/build-simulator.yaml new file mode 100644 index 0000000000..feee929994 --- /dev/null +++ b/.github/workflows/build-simulator.yaml @@ -0,0 +1,19 @@ +name: unit test ci + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + with: + fetch-depth: 1 + submodules: recursive + + - name: Build Simulator + working-directory: ./simulator/ + run: make -j4 +