Merge pull request #108 from ArgonneCPAC/new_defaults #42
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: null | |
jobs: | |
tests: | |
name: tests | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: 3.9 | |
channels: conda-forge,defaults | |
channel-priority: strict | |
show-channel-urls: true | |
miniforge-version: latest | |
miniforge-variant: Mambaforge | |
- name: configure conda and install code | |
shell: bash -l {0} | |
run: | | |
conda config --set always_yes yes | |
conda install --quiet \ | |
--file=requirements.txt | |
python -m pip install --no-deps -e . | |
conda install -y -q \ | |
flake8 \ | |
pytest \ | |
pytest-xdist \ | |
pytest-cov | |
- name: lint | |
shell: bash -l {0} | |
run: | | |
flake8 diffmah | |
- name: test | |
shell: bash -l {0} | |
run: | | |
pytest -v diffmah --cov --cov-report=xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |