-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,10 +37,29 @@ runs: | |
using: "composite" | ||
|
||
steps: | ||
#- name: Check out repository | ||
#- uses: actions/checkout@v4 | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- uses: cvxgrp/.github/actions/[email protected] | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
# It's easier to cache if a virtual environment within the project is used | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
installer-parallel: true | ||
|
||
- name: Install project | ||
shell: bash | ||
working-directory: ${{ inputs.working-directory }} | ||
run: | | ||
# upgrade pip | ||
poetry run pip install --upgrade pip | ||
poetry install --no-interaction --all-extras | ||
- name: Install jupyterbook | ||
shell: bash | ||
|
This file was deleted.
Oops, something went wrong.