We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 960255c commit 4982d66Copy full SHA for 4982d66
.github/workflows/test-python.yml
@@ -38,6 +38,7 @@ jobs:
38
matrix:
39
os: [ubuntu-20.04]
40
python-version: ["3.7", "3.11", "pypy-3.9"]
41
+ fail-fast: false
42
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
43
steps:
44
- uses: actions/checkout@v4
@@ -49,7 +50,7 @@ jobs:
49
50
cache-dependency-path: 'pyproject.toml'
51
- name: Install dependencies
52
run: |
- pip install -u pip
53
+ pip install -U pip
54
pip install -e ".[test]"
55
- name: Start MongoDB
56
uses: supercharge/[email protected]
@@ -70,6 +71,10 @@ jobs:
70
71
72
# Build docs on lowest supported Python for furo
73
python-version: '3.8'
74
+ - name: Install dependencies
75
+ run: |
76
77
+ pip install -e ".[docs]"
78
- name: Build docs
79
80
cd docs
0 commit comments