We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84d569b commit eccdfa6Copy full SHA for eccdfa6
.github/workflows/python-linux.yml
@@ -72,6 +72,21 @@ jobs:
72
pip install -r doc-requirements.txt
73
make html SPHINXOPTS="-W"
74
75
+ test_miniumum_verisons:
76
+ name: Test Minimum Versions
77
+ runs-on: ubuntu-latest
78
+ strategy:
79
+ matrix:
80
+ python-version: ["3.7"]
81
+ steps:
82
+ - uses: actions/checkout@v2
83
+ - name: Base Setup
84
+ uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
85
+ - name: Install miniumum versions
86
+ uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
87
+ - name: Run the unit tests
88
+ run: pytest -vv
89
+
90
make_sdist:
91
name: Make SDist
92
runs-on: ubuntu-latest
0 commit comments