Skip to content

test windows build #129

test windows build

test windows build #129

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:

Check failure on line 20 in .github/workflows/conda.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/conda.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
{# platform: [ubuntu-latest, macos-latest, windows-latest] #}
platform: [windows-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