diff --git a/.gitea/workflows/.gitea-ci.yml b/.gitea/workflows/.gitea-ci.yml deleted file mode 100644 index a84de87..0000000 --- a/.gitea/workflows/.gitea-ci.yml +++ /dev/null @@ -1,8 +0,0 @@ -pipelines: - default: - - step: - name: "Test Runner" - image: "ubuntu:latest" - commands: - - echo "Testing Gitea Runner" - - echo "Pipeline executed successfully!" \ No newline at end of file diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..66d1136 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,18 @@ +name: test +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - name: Echo Hello World + run: echo "Hello, World!" + - name: Echo content of "Owo.md" + run: cat Owo.mod || echo "Owo.md does not exist" \ No newline at end of file