An open API service indexing awesome lists of open source software.

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

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
```