Merge branch 'donaldcummins-donald' into main #25
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: Python Package using Conda | |
on: [push] | |
jobs: | |
test: | |
name: Test python ${{ matrix.python-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
python-version: [3.7] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install mamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: RF.yml | |
environment-name: RF | |
- name: Install test packages | |
shell: bash -l {0} | |
run: | | |
pip install pytest nbconvert nbformat | |
- name: which python | |
shell: bash -l {0} | |
run: | | |
which python | |
- name: Test with pytest | |
shell: bash -l {0} | |
run: | | |
pytest .github/workflows/test_RF_notebooks.py |