Skip to content

Commit

Permalink
[py] Install requirements in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed Sep 17, 2024
1 parent c8b6519 commit 3c4956e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/pyrobird.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pyrobird tests
name: Backend Pyrobird Workflow

on:
push:
Expand All @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11'] # Python versions matrix
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] # Python versions matrix

steps:
- name: Check out the repository
Expand All @@ -27,7 +27,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
python -m pip install pytest
cd pyrobird
python -m pip install .[test]
# Add any other dependencies your project requires
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
Expand Down

0 comments on commit 3c4956e

Please sign in to comment.