Skip to content

Commit 71af305

Browse files
committed
added module install
1 parent 98e9be7 commit 71af305

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.12"] # "pypy3.9", "pypy3.10", "3.9", "3.10", "3.11",
1212

1313
steps:
1414
- uses: actions/checkout@v4
@@ -18,4 +18,9 @@ jobs:
1818
python-version: ${{ matrix.python-version }}
1919
# You can test your matrix by printing the current Python version
2020
- name: Display Python version
21-
run: python -c "import sys; print(sys.version)"
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install numpy
24+
pip install GitPython
25+
cd tests/
26+
python build-documentation.py

0 commit comments

Comments
 (0)