From bdb9fa7707023bf83e8b4d5ef2debc7371ff7911 Mon Sep 17 00:00:00 2001 From: Eric Foley Date: Wed, 19 Mar 2025 10:07:02 -0600 Subject: [PATCH] ci: add GHA workflow to build --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..6915344 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: C/C++ CI + +on: + # run on all branches + push: + branches: [ ] + pull_request: + branches: [ ] + +jobs: + linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: make + run: | + make + + macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + - name: make + run: | + make \ No newline at end of file