Skip to content

Update README.md

Update README.md #11

Workflow file for this run

# .github/workflows/cd.yml
name: CD
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install Pipenv
run: |
python -m pip install pipenv
pipenv install --dev
- name: Deploy to Production
run: |