From dfa1b239f024947f546c493c7012f358c3a32e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C4=99drek?= Date: Tue, 9 Dec 2025 11:13:09 +0100 Subject: [PATCH] Added CI workflow --- .gitea/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..2c962e4 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,9 @@ +name: First CI +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Printing hello + run: echo "Hello, world"