From c89650586b37bb43ad3a4f032b85acfb5ab1a06f Mon Sep 17 00:00:00 2001 From: Bram Kolkman Date: Sun, 22 Feb 2026 11:29:38 +0100 Subject: [PATCH] Pull request action * Added a Gitea pull request action --- .gitea/workflows/pr.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/pr.yml diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml new file mode 100644 index 0000000..162c38a --- /dev/null +++ b/.gitea/workflows/pr.yml @@ -0,0 +1,18 @@ +name: Build + +on: + pull_request: + +jobs: + build: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Resolve dependencies + run: make resolve + + - name: Build package + run: make build