diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..bf9f432 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: Test CI CD + +on: + push: + branches: + - main + +jobs: + test-job: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + + - name: Run a simple test + run: | + echo "CI/CD is working perfectly on Gitea!" \ No newline at end of file