diff --git a/.github/workflows/ci-unixish.yml b/.github/workflows/ci-unixish.yml new file mode 100644 index 0000000..ab17d94 --- /dev/null +++ b/.github/workflows/ci-unixish.yml @@ -0,0 +1,20 @@ +name: C/C++ CI Unixish + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: make check + run: make check + - name: Install + run: sudo make install