Skip to content

Commit 4982d66

Browse files
committed
clean up ci
1 parent 960255c commit 4982d66

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test-python.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
matrix:
3939
os: [ubuntu-20.04]
4040
python-version: ["3.7", "3.11", "pypy-3.9"]
41+
fail-fast: false
4142
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
4243
steps:
4344
- uses: actions/checkout@v4
@@ -49,7 +50,7 @@ jobs:
4950
cache-dependency-path: 'pyproject.toml'
5051
- name: Install dependencies
5152
run: |
52-
pip install -u pip
53+
pip install -U pip
5354
pip install -e ".[test]"
5455
- name: Start MongoDB
5556
uses: supercharge/[email protected]
@@ -70,6 +71,10 @@ jobs:
7071
cache-dependency-path: 'pyproject.toml'
7172
# Build docs on lowest supported Python for furo
7273
python-version: '3.8'
74+
- name: Install dependencies
75+
run: |
76+
pip install -U pip
77+
pip install -e ".[docs]"
7378
- name: Build docs
7479
run: |
7580
cd docs

0 commit comments

Comments
 (0)