add run_tests CLI command #182
Workflow file for this run
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: Conda Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**/*' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**/*' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, macos-latest] | |
python-version: ["3.12"] | |
runs-on: ${{ matrix.platform }} | |
env: # We need to add the path to the rrtmgp-data directory | |
RRTMGP_DATA: /home/runner/work/pyRTE-RRTMGP/pyRTE-RRTMGP/rrtmgp-data | |
# The setup-miniconda action needs this to activate miniconda | |
defaults: | |
run: | |
shell: "bash -l {0}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get conda | |
uses: conda-incubator/[email protected] | |
with: | |
miniconda-version: "latest" | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
auto-activate-base: true | |
activate-environment: "" | |
- name: Prepare | |
run: conda install conda-build conda-verify pytest | |
- name: Build | |
run: conda build conda.recipe | |
- name: Install Local Package | |
run: conda install --use-local pyrte_rrtmgp | |
- name: Activate Environment and Run Tests | |
run: | | |
pyrte_rrtmgp run_tests |