From 287bab73042e8f2e33090a79c0b7470e8986a50c Mon Sep 17 00:00:00 2001 From: Nils Burghardt Date: Sun, 13 Jul 2025 14:21:51 +0200 Subject: [PATCH] Add Gitea Actions build workflow --- .gitea/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..473d6ae --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,19 @@ +name: Build + +on: + push: + branches: + - master + +jobs: + build: + runs-on: local + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Print working directory + run: pwd + + - name: List contents + run: ls -al \ No newline at end of file