Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ jobs:
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Create the tvo conda env
run: conda env create
run: |
conda create -n tvo python==3.8 gcc_linux-64
source $CONDA/etc/profile.d/conda.sh
conda activate tvo
pip install -r requirements.txt
- name: Generate docs
run: |
source $CONDA/etc/profile.d/conda.sh
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Create the tvo conda env
run: conda env create
run: |
conda create -n tvo python==3.8 gcc_linux-64
source $CONDA/etc/profile.d/conda.sh
conda activate tvo
pip install -r requirements.txt
- name: Check formatting with black
run: |
source $CONDA/etc/profile.d/conda.sh
Expand Down
20 changes: 0 additions & 20 deletions environment.yml

This file was deleted.