Files
GiteaRunnerTest/.gitea/workflows/test-python.yaml
Whyverum 74d3cce4da
All checks were successful
Test Python Runner / python-job (push) Successful in 12s
Тестирование runner
2025-11-27 11:19:04 +07:00

22 lines
435 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: Test Python Runner
on:
push:
branches:
- master
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/main.py