From a50164cb1f7b53e444dda52602294c36c2724928 Mon Sep 17 00:00:00 2001 From: brb Date: Tue, 25 Jul 2023 21:10:07 +0200 Subject: [PATCH] added test workflow --- .gitea/workflows/default.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/default.yaml diff --git a/.gitea/workflows/default.yaml b/.gitea/workflows/default.yaml new file mode 100644 index 0000000..15d5e5b --- /dev/null +++ b/.gitea/workflows/default.yaml @@ -0,0 +1,16 @@ +name: pipeline +run-name: ${{ gitea.actor }} is running script +runs-on: ubuntu-latest +on: + push: + branches-ignore: + - "release" +image: ubuntu-latest +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Show Name + run: echo "${{ gitea.actor }}" \ No newline at end of file