GitHub Actions
Topics covered:
Demonstration using Python
print("Hello there!")name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Run Code
run: python src/app.pyExtending Python Example
Demonstration using ReactJS
Last updated