diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..0a01b0f --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,15 @@ +name: test + +on: + push: + branches: + - main + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: Show basic info + run: | + echo "Hello from Gitea Actions" + uname -a