Move pip packages to environment file #88
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
name: Tests | |
on: | |
push: | |
branches: [ "re-org" ] | |
pull_request: | |
branches: [ "re-org" ] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
build-linux-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Add conda to system path | |
run: | | |
# $CONDA is an environment variable pointing to the root of the miniconda directory | |
echo $CONDA/bin >> $GITHUB_PATH | |
- name: Install mamba and dependencies | |
run: | | |
conda install mamba -c conda-forge | |
mamba env update --file environment.yml --name goesenv | |
source $CONDA/etc/profile.d/conda.sh | |
conda activate goesenv | |
pip install . | |
pip install goespy@git+https://github.com/spestana/goes-py | |
pip install gtsa@git+https://github.com/friedrichknuth/gtsa | |
mamba install pytest | |
- name: Test with pytest | |
run: | | |
source $CONDA/etc/profile.d/conda.sh | |
conda activate goesenv | |
pytest |