commit 6dff7f79c87943b061c34c6840e764d071a5460c Author: mikhail26proko Date: Wed Apr 30 13:38:49 2025 +0300 Добавить .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..31a5dfc --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,17 @@ +name: Test Workflow + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Print environment variables + run: | + echo "GITHUB_REPOSITORY: $GITHUB_REPOSITORY" + echo "GITHUB_SHA: $GITHUB_SHA" + echo "GITHUB_REF: $GITHUB_REF" + echo "GITHUB_ACTOR: $GITHUB_ACTOR" + echo "PATH: $PATH" \ No newline at end of file