From fa03df2e20a2cd6a96a47314bbffec8c64e4245d Mon Sep 17 00:00:00 2001 From: b9 Date: Wed, 13 Mar 2024 18:36:37 -0700 Subject: [PATCH] A GitHub action to run make on a virtual Macintosh --- .github/workflows/mac-make.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/mac-make.yaml diff --git a/.github/workflows/mac-make.yaml b/.github/workflows/mac-make.yaml new file mode 100644 index 0000000..7212ae0 --- /dev/null +++ b/.github/workflows/mac-make.yaml @@ -0,0 +1,17 @@ +name: MacOS compilation test + +on: + push: + pull_request: + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + - name: make + run: make + - name: Create tar and zip files + run: make archive