diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml new file mode 100644 index 0000000..a417e5b --- /dev/null +++ b/.gitea/workflows/actions.yaml @@ -0,0 +1,17 @@ +name: TestActions + +on: + push: + branches: + - '*' + - '!main' + +jobs: + Test: + name: Test + runs-on: ubuntu-latest + steps: + - run: echo "${{ github }}" + - run: echo "${{ runner }}" + - run: echo "${{ gitea }}" + - run: echo "${{ job }}" \ No newline at end of file