Skip to content

Commit

Permalink
install requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwi committed Sep 27, 2024
1 parent a3e3405 commit 7de5198
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/actions/test-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,13 @@ runs:
with:
python-version: ${{ inputs.PYTHON_VERSION }}
cache: 'pip'
- run: pip install -r requirements.txt

- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
# - name: Test with pytest
# run: |
# pytest

0 comments on commit 7de5198

Please sign in to comment.