Skip to content

Commit a0e5d10

Browse files
rhtjackiekazil
authored andcommittedMay 14, 2022
ci: Ensure wheel is install before pip install step
Without this PR's fix, you see this message: https://github.com/projectmesa/mesa/runs/6422630638?check_suite_focus=true#step%3A5%3A161=.
1 parent 6276868 commit a0e5d10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/build_lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
path: ~/.cache/pip
4747
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('Pipfile.lock') }}
4848
- name: Install dependencies
49-
run: pip install .[dev]
49+
run: pip install wheel && pip install .[dev]
5050
- name: Test with pytest
5151
run: pytest --cov=mesa tests/ --cov-report=xml
5252
- if: matrix.os == 'ubuntu'

0 commit comments

Comments
 (0)
Please sign in to comment.