From c748530471e82b1215f3c785af4992821d05553a Mon Sep 17 00:00:00 2001 From: sthope Date: Sat, 4 May 2024 17:13:12 +0200 Subject: [PATCH] Initial commit --- .gitea/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..e54d688 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,11 @@ +name: Hello World +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: echo "Hello, world!" \ No newline at end of file