From d3df7b2c47ab6ebffbb639704f4b702b7f91fd25 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Thu, 12 Nov 2020 10:24:16 -0500 Subject: [PATCH] Create make.yml --- .github/workflows/make.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/make.yml diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml new file mode 100644 index 0000000..a56119d --- /dev/null +++ b/.github/workflows/make.yml @@ -0,0 +1,17 @@ +name: C/C++ CI + +on: [push, pull_request] + +jobs: + build: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, ubuntu-latest] + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: make + run: make all