diff options
| author | Carson Fleming <[email protected]> | 2026-08-28 01:29:32 -0400 |
|---|---|---|
| committer | Carson Fleming <[email protected]> | 2026-08-28 01:30:05 -0400 |
| commit | 2ec12292e46da2910a6aeaf5fe7c0150ee96536d (patch) | |
| tree | e660b03fa56b17f6f537fe3e5c83a741c6e31970 /.forgejo/workflows | |
| parent | 2b15aa4b0ee04e7adb7d98ac55c4f5c8ac13630c (diff) | |
| download | ccc-2ec12292e46da2910a6aeaf5fe7c0150ee96536d.tar.gz | |
some ci/cd for the fun of it
Diffstat (limited to '.forgejo/workflows')
| -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 |
