Add optional higher order moments #505
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: tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: null | |
jobs: | |
tests: | |
name: tests | |
strategy: | |
matrix: | |
pyver: ["3.9", "3.10", "3.11"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ matrix.pyver }} | |
channels: conda-forge,defaults | |
channel-priority: strict | |
show-channel-urls: true | |
miniforge-version: latest | |
- name: configure conda and install code | |
shell: bash -l {0} | |
run: | | |
conda config --set always_yes yes | |
conda install --quiet \ | |
pip \ | |
setuptools \ | |
numpy \ | |
"numba!=0.54.0" \ | |
flake8 \ | |
pyyaml \ | |
scipy \ | |
pytest \ | |
galsim \ | |
scikit-learn \ | |
emcee \ | |
fitsio \ | |
meds \ | |
pytest-cov \ | |
pytest-xdist \ | |
flaky | |
python -m pip install -e . | |
- name: lint | |
shell: bash -l {0} | |
run: | | |
flake8 ngmix | |
- name: test | |
shell: bash -l {0} | |
run: | | |
pytest -n 4 -v --cov=ngmix --cov-report term-missing ngmix |