Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tharunbirla authored Nov 30, 2023
1 parent c3f5579 commit a8937be
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,25 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10

uses: actions/setup-python@v3
with:
python-version: "3.10"

- name: Set up env
run: python -m venv penv

- name: Activate env
run: source source penv/bin/activate

- name: Update pip
run: python -m pip install --upgrade pip

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
run: pip install -r requirements.txt

- name: Train
run: python train.py

Expand Down

0 comments on commit a8937be

Please sign in to comment.