From efb1efeb71a36123076338ca6fa5e916c7a5bbf5 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Wed, 3 Jul 2024 21:32:48 +0100 Subject: [PATCH] ci: add initial CI build test Adding initial test workflow for building the project. --- .gitea/workflows/build.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..f9820aa --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,15 @@ +name: build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run make + run: make