Skip to content

Commit bd3c1f3

Browse files
add generating the catalog csv for docs into GH actions
1 parent 1ca3461 commit bd3c1f3

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/python.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
run: |
3232
cd dist
3333
pip install -v pygambit*.tar.gz
34+
- name: Generate Catalog CSV for docs
35+
run: |
36+
cd src/pygambit
37+
python update_catalog.py
3438
- name: Run tests
3539
run: pytest --run-tutorials
3640

@@ -56,6 +60,10 @@ jobs:
5660
- name: Build extension
5761
run: |
5862
python -m pip install -v .
63+
- name: Generate Catalog CSV for docs
64+
run: |
65+
cd src/pygambit
66+
python update_catalog.py
5967
- name: Run tests
6068
run: pytest --run-tutorials
6169

@@ -81,6 +89,10 @@ jobs:
8189
- name: Build extension
8290
run: |
8391
python -m pip install -v .
92+
- name: Generate Catalog CSV for docs
93+
run: |
94+
cd src/pygambit
95+
python update_catalog.py
8496
- name: Run tests
8597
run: pytest --run-tutorials
8698

@@ -106,5 +118,9 @@ jobs:
106118
- name: Build extension
107119
run: |
108120
python -m pip install -v .
121+
- name: Generate Catalog CSV for docs
122+
run: |
123+
cd src/pygambit
124+
python update_catalog.py
109125
- name: Run tests
110126
run: pytest --run-tutorials

0 commit comments

Comments
 (0)