From 2e22070ddfc4d84eed2de938d028a09c80f26ae4 Mon Sep 17 00:00:00 2001 From: travisladuke Date: Wed, 26 Jul 2023 13:41:27 -0700 Subject: [PATCH] Basic Github action to build on linux and mac --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..8917229 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: Build +on: + push: + paths-ignore:: + - "README.md" + +jobs: + build_matrix: + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout the repository + uses: actions/checkout@v3.5.3 + - run: make