From 8935e32381af723282f869a36019349ffe35d594 Mon Sep 17 00:00:00 2001 From: Sergey Cherepiuk Date: Thu, 23 Nov 2023 16:10:06 +0100 Subject: [PATCH] Added simple workflow --- .gitea/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 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..a75dcf4 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,9 @@ +name: First CI +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Printing hello + run: echo "Hello, World!" \ No newline at end of file