diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..71abf9e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: Building and testing + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run unit tests + run: make test