diff --git a/.gitea/workflows/sample.yml b/.gitea/workflows/sample.yml new file mode 100644 index 0000000..6272347 --- /dev/null +++ b/.gitea/workflows/sample.yml @@ -0,0 +1,12 @@ +name: Test Gitea Actions +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: List files + run: ls -la + - name: Done + run: echo "Gitea Actions working on 1.25.5!"