Basic Github action to build on linux and mac

This commit is contained in:
travisladuke
2023-07-26 14:12:07 -07:00
parent 27b4d12109
commit 2e22070ddf
+16
View File
@@ -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