Skip to content

fix: typo in .gitignore #15

fix: typo in .gitignore

fix: typo in .gitignore #15

Workflow file for this run

# .github/workflows/python-app.yml
name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Create Virtual Environment
run: python -m venv .venv
- name: Install Dependencies
run: |
source .venv/bin/activate
pip install -r requirements.txt
- name: Run application
run: |
source .venv/bin/activate
python run.py