diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml new file mode 100644 index 00000000..4fbc054d --- /dev/null +++ b/.github/workflows/on-push.yml @@ -0,0 +1,25 @@ +name: Build and test + +on: + push: + branches: + - "*" + tags: + - "*" + +jobs: + + build: + runs-on: ubuntu-latest + + steps: + + - id: checkout-code + uses: actions/checkout@v3 + with: + path: source + + - id: build + run: | + pushd source + make build