We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c674d3 commit ada5b03Copy full SHA for ada5b03
1 file changed
.github/workflows/ci.yml
@@ -17,18 +17,17 @@ jobs:
17
18
steps:
19
- name: Checkout repository
20
- uses: actions/checkout@v3
+ uses: actions/checkout@v3 # This is already the latest version
21
22
- name: Set up Python
23
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v4 # This is also the latest version
24
with:
25
python-version: ${{ matrix.python-version }}
26
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
- pip install pytest
31
- pip install .
+ pip install .[dev] # Use dev to install pytest
32
33
- name: Run tests
34
0 commit comments