From 55581a63d3ce6b11f765d8564c36931452840606 Mon Sep 17 00:00:00 2001 From: Daniel Svitan Date: Tue, 27 May 2025 19:52:51 +0200 Subject: [PATCH] :green_heart: Adds CI build --- .gitea/workflows/build.yaml | 17 +++++++++++++++++ 1 file changed, 17 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..660c508 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,17 @@ +name: Gitea Build Action +run-name: ${{ gitea.actor }} build +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - run: echo "testing this and that" + - run: ls + - run: pwd + - name: Checkout code + uses: actions/checkout@v4 + - run: echo "checked out ${{ gitea.repository }}" + - run: ls + - run: pwd + - run: echo "okay the status is ${{ job.status }}"