Skip to content

Commit

Permalink
ci: use python -m pip instaed
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed Nov 29, 2023
1 parent ff1a5e6 commit b5219ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pybind11 setuptools
python -m pip install pybind11 setuptools
- name: Install
run: pip install .
run: python -m pip install .

- name: Test
run: python -m unittest discover
Expand Down

0 comments on commit b5219ca

Please sign in to comment.