Add conda canary CI job #17
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_cron" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
schedule: | |
# At 07:00 UTC every day | |
- cron: "0 7 * * *" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
condacheck: | |
runs-on: ${{ matrix.OS }} | |
name: "daily conda check" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'macos-12'] | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
exclude: | |
- os: 'macos-latest' | |
python-version: '3.9' | |
steps: | |
- name: Setup Micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: openfe | |
create-args: >- | |
python=${{ matrix.python-version }} | |
pip | |
condarc: | | |
channels: | |
- jaimergp/label/unsupported-cudatoolkit-shim | |
- conda-forge | |
init-shell: bash | |
- name: "Install openfe + optional deps" | |
run: | | |
micromamba install openfe pytest -c conda-forge | |
python -m pip install pytest-xdist | |
- name: "env info" | |
run: | | |
micormamba info | |
micromamba list | |
pip list | |
- id: run-tests | |
name: "Run tests" | |
run: | | |
# note: this only runs the fast tests | |
pytest -n auto --pyargs openfe openfecli |