Skip to content

Commit

Permalink
Update build to see if this solves pytest import
Browse files Browse the repository at this point in the history
  • Loading branch information
saalUW committed Apr 22, 2024
1 parent 20b0d8a commit ae39e5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: python -m pip install .[dev] --upgrade pip
run: pip install .[dev]
- name: Install pytest
run: pip install pytest
- name: Test with pytest
run: pytest
- name: Build package distribution
Expand Down

0 comments on commit ae39e5e

Please sign in to comment.