https://github.com/fadilxcoder/python-ga
Github action - Python
https://github.com/fadilxcoder/python-ga
Last synced: about 1 year ago
JSON representation
Github action - Python
- Host: GitHub
- URL: https://github.com/fadilxcoder/python-ga
- Owner: fadilxcoder
- Created: 2025-01-22T16:48:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-23T11:51:10.000Z (over 1 year ago)
- Last Synced: 2025-01-31T12:18:31.549Z (about 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python in CI/CD Github Action
```yaml
name: Python
on:
push:
branches:
- master
jobs:
run-python-script:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Run Python script
run: python main.py
```