diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml new file mode 100644 index 0000000..55268a0 --- /dev/null +++ b/.github/workflows/make.yml @@ -0,0 +1,17 @@ +name: Make + +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