Merge pull request #343 from usnistgov/develop #985
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: Rebuild | |
on: [push, pull_request] | |
jobs: | |
miniconda: | |
name: Miniconda ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: test | |
environment-file: environment.yml | |
python-version: "3.10" | |
auto-activate-base: false | |
- shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
python setup.py develop | |
echo 'PIP FREEZE' | |
pip freeze | |
echo 'CONDA LIST' | |
conda list | |
pip install pytest coverage==6.5.0 flake8 | |
coverage run -m pytest | |
coverage report -m -i | |