diff options
| -rw-r--r-- | .forgejo/workflows/build.yml | 19 | ||||
| -rw-r--r-- | .gitignore | 1 |
2 files changed, 20 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 @@ -5,4 +5,5 @@ ccc build/** .* !.git* +!.forgejo !.clangd |
