Skip to content

add run_tests CLI command #186

add run_tests CLI command

add run_tests CLI command #186

Workflow file for this run

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
- name: Prepare
run: conda install conda-build conda-verify pytest
- name: Build
run: conda build conda.recipe