From 2ec12292e46da2910a6aeaf5fe7c0150ee96536d Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 28 Aug 2026 01:29:32 -0400 Subject: some ci/cd for the fun of it --- .forgejo/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .forgejo/workflows/build.yml (limited to '.forgejo') 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 -- cgit v1.2.3