Skip to content

Commit

Permalink
remove setup-environment
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jan 7, 2025
1 parent aeb788b commit 9c1a2d3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 75 deletions.
25 changes: 22 additions & 3 deletions actions/jupyter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
72 changes: 0 additions & 72 deletions actions/setup-environment/action.yml

This file was deleted.

0 comments on commit 9c1a2d3

Please sign in to comment.