Тестирование 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