Skip to content

Commit

Permalink
Add package installation to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-bushuiev committed Jun 19, 2024
1 parent 0b971c9 commit fc5a3e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Install dependencies
run: |
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
Expand Down

0 comments on commit fc5a3e6

Please sign in to comment.