From ecee70096697a27559bcce93f84b657d63d29ed5 Mon Sep 17 00:00:00 2001 From: Jakub Nowosad <63680019+Ocayy@users.noreply.github.com> Date: Tue, 9 Dec 2025 00:41:33 +0100 Subject: [PATCH] add initial CI workflow configuration --- .gitea/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..9819dbf --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,8 @@ +name: First CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Printing hello + run: echo "Hello, 🌍" \ No newline at end of file