Skip to content

Update contributing info #106

Update contributing info

Update contributing info #106

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]
python-version: ["3.11"]
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
with:
submodules: recursive
- name: Get conda
uses: conda-incubator/[email protected]
with:
python-version: ${{ matrix.python-version }}
channels: conda-forge
- name: Prepare
run: conda install conda-build conda-verify pytest
- name: Build
run: conda build conda.recipe
- name: Install
run: conda install -c ${CONDA_PREFIX}/conda-bld/ pyrte_rrtmgp
- name: Test
run: pytest tests