Skip to content

Commit

Permalink
build: install dependencies for unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ongsici committed Oct 21, 2024
1 parent 605ef5b commit 4fff880
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install pytest
run: pip install pytest
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest
run: pytest src/test_app.py

Expand Down

0 comments on commit 4fff880

Please sign in to comment.