From 910c91f097a6cee472e4ce1794b448c9022cc6fe Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Tue, 8 Sep 2020 19:39:02 -0500 Subject: [PATCH] Create onyx-build.yml --- .github/workflows/onyx-build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/onyx-build.yml diff --git a/.github/workflows/onyx-build.yml b/.github/workflows/onyx-build.yml new file mode 100644 index 00000000..ad8f4592 --- /dev/null +++ b/.github/workflows/onyx-build.yml @@ -0,0 +1,21 @@ +name: Build and Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: make install + run: make install + - name: onyx progs/odin_example.onyx + run: onyx progs/odin_example.onyx -- 2.25.1