Skip to content

Add functionality for multiple morphs in one command #58

Add functionality for multiple morphs in one command

Add functionality for multiple morphs in one command #58

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
miniconda:
name: Miniconda ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
steps:
- name: check out diffpy.pdfmorph
uses: actions/checkout@v3
with:
repository: diffpy/diffpy.pdfmorph
# for bookkeeping have diffpy.pdfmorph at the same level as everything else in the
# directory tree
path: .
- name: initialize miniconda
# this uses a marketplace action that sets up miniconda in a way that makes
# it easier to use. I tried setting it up without this and it was a pain
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
# environment.yml file is needed by this action. Because I don't want
# maintain this but rather maintain the requirements files it just has
# basic things in it like conda and pip
environment-file: ./environment.yml
python-version: 3
auto-activate-base: false
- name: install pdfmorph requirements
shell: bash -l {0}
run: |
conda config --set always_yes yes --set changeps1 no
conda config --add channels conda-forge
conda activate test
conda install --file requirements/run.txt
conda install --file requirements/test.txt
pip install .
# redownload diffpy.utils pre 3.2.0 release, use https since public repo
- name: install diffpy.utils
shell: bash -l {0}
run: |
git clone https://github.com/diffpy/diffpy.utils.git
cd diffpy.utils
rm run_tests.py
rm -r conda-recipe
rm -r src/diffpy/utils/tests
conda activate test
pip install .
- name: Validate pdfmorph
shell: bash -l {0}
run: |
conda activate test
coverage run run_tests.py
coverage report -m
codecov