diff options
Diffstat (limited to '.forgejo')
| -rw-r--r-- | .forgejo/workflows/build.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..44d2907 --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,19 @@ +name: Build Compiler + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +on: + - push + - pull_request + +jobs: + make: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v5 + + - name: Build + run: make |
