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