update supported Python version (#89) #264
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.11", "3.12"] | |
# when updating the tested Python versions, please also update README.md | |
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/setup-miniconda@v3.1.1 | |
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 liblief=0.14.1 | |
- name: Build | |
run: conda build conda.recipe |