Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/build_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
run: bash install_step0_conda.sh
- name: install R dependencies
run: bash install_step1_R.sh
- name: install python dependencies
run: bash install_step2_pip.sh
- name: run_test
run: bash run_minimal_test.sh
- name: List full installation of the conda environment
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.pre-commit-config.yaml
random-functions
rgcvpack
1 change: 1 addition & 0 deletions create_environment.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
bash install_step0_conda.sh
bash install_step1_R.sh
bash install_step2_pip.sh
1 change: 1 addition & 0 deletions install_step2_pip.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip install netcdf4 h5netcdf xarray numpy dask pandas pyyaml ruamel.yaml
Loading