Skip to content

Commit

Permalink
Use micromamba to install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
KasukabeDefenceForce committed Aug 19, 2024
1 parent c390ef5 commit 6049e51
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/tardis-research-papers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,19 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
python-version: "3.x"
environment-name: fetch-env
create-args: >-
python=3.10
- name: Install dependencies
- name: Activate environment
run: micromamba activate fetch-env

- name: Install additional dependencies
run: |
python -m pip install --upgrade pip
pip install jupyter nbconvert
micromamba install -y jupyter
- name: Run the ADS notebook
run: |
Expand Down

0 comments on commit 6049e51

Please sign in to comment.