Skip to content

Commit

Permalink
Added package installation to CI (#1)
Browse files Browse the repository at this point in the history
Needed because package is not on PyPI.
  • Loading branch information
wleoncio committed Jul 1, 2024
1 parent 345bc40 commit 5ebf44c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install package
run: |
pip install -e .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 5ebf44c

Please sign in to comment.