Skip to content

Commit

Permalink
Add package install to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Dec 12, 2024
1 parent db91bb1 commit 662ee6b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install package
run: make install

- name: install dependencies
- name: Install dependencies
run: |
pip install jupyter-book
pip install furo
pip install sphinx-argparse
- name: Generate documentation
run: make documentation
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install package
run: make install

- name: install dependencies
- name: Install dependencies
run: |
pip install jupyter-book
pip install furo
Expand Down

0 comments on commit 662ee6b

Please sign in to comment.