Skip to content

Commit ada5b03

Browse files
Update ci.yml
1 parent 2c674d3 commit ada5b03

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,17 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v3 # This is already the latest version
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v4 # This is also the latest version
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install pytest
31-
pip install .
30+
pip install .[dev] # Use dev to install pytest
3231
3332
- name: Run tests
3433
run: |

0 commit comments

Comments
 (0)