Skip to content

Commit e5c88bb

Browse files
committedJun 4, 2024
pip install for test
1 parent e25505d commit e5c88bb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎.github/workflows/pythonpackage.yml

+12
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
python -m pip install .
2125
- name: Test with pytest
2226
run: |
2327
pip install pytest
@@ -36,6 +40,10 @@ jobs:
3640
uses: actions/setup-python@v5
3741
with:
3842
python-version: ${{ matrix.python-version }}
43+
- name: Install dependencies
44+
run: |
45+
python -m pip install --upgrade pip
46+
python -m pip install .
3947
- name: Test with pytest
4048
run: |
4149
pip install pytest
@@ -54,6 +62,10 @@ jobs:
5462
uses: actions/setup-python@v5
5563
with:
5664
python-version: ${{ matrix.python-version }}
65+
- name: Install dependencies
66+
run: |
67+
python -m pip install --upgrade pip
68+
python -m pip install .
5769
- name: Test with pytest
5870
run: |
5971
pip install pytest

0 commit comments

Comments
 (0)
Failed to load comments.