Skip to content

Commit

Permalink
Add python into the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Nov 25, 2024
1 parent c700513 commit 47f1e5c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ jobs:

- name: "Check out repository"
uses: actions/checkout@v4

- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip' # caching pip dependencies
- name: "Install Dependencies"
run: pip install -r docs/requirements.txt

- name: "Set up Quarto"
uses: quarto-dev/quarto-actions/setup@v2
Expand Down
3 changes: 3 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy
matplotlib
seaborn

0 comments on commit 47f1e5c

Please sign in to comment.