Тестирование runner

This commit is contained in:
2025-11-27 11:10:43 +07:00
commit d7f7c63b60
11 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
name: Test Python Runner
on:
push:
branches:
- main
jobs:
python-job:
runs-on: ubuntu-latest # должен совпадать с label runner
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python
run: |
sudo apt update
sudo apt install -y python3 python3-pip
- name: Run Python script
run: python3 script/hello.py

8
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

10
.idea/TestRunnerGitea.iml generated Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.13 (TestRunnerGitea)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="HttpUrlsUsage" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
</profile>
</component>

View File

@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

6
.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.13 (TestRunnerGitea)" />
</component>
</project>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/TestRunnerGitea.iml" filepath="$PROJECT_DIR$/.idea/TestRunnerGitea.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Test Gitea Python Runner
Тестовый репозиторий для проверки Gitea Actions runner с Python-скриптом.

0
script/__init__.py Normal file
View File

12
script/main.py Normal file
View File

@@ -0,0 +1,12 @@
# Простой тестовый скрипт
import sys
import platform
def main() -> None:
print("Hello from Python script!")
print(f"Python version: {platform.python_version()}")
print(f"Running on: {platform.system()} {platform.release()}")
sys.exit(0)
if __name__ == "__main__":
main()