Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineMousssaif authored Nov 25, 2023
1 parent d59c2d6 commit c59e01b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.11.6

- name: Set up virtual environment
run: |
python -m venv venv
source venv\Scripts\activate
pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
- name: Run Application
run: |
python app.py # Adjust this if needed
python app.py

0 comments on commit c59e01b

Please sign in to comment.