Merge pull request #112 from Tieqiong/wftypo #16
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- prereleased | |
- published | |
workflow_dispatch: | |
jobs: | |
coverage: | |
defaults: | |
run: | |
shell: bash -l {0} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | |
python-version: ["3.11", "3.12"] | |
env: | |
LATEST_PYTHON_VERSION: "3.12" | |
steps: | |
- name: Check out diffpy.pdffit2 | |
uses: actions/checkout@v4 | |
- name: Initialize miniconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: test | |
auto-update-conda: true | |
environment-file: environment.yml | |
auto-activate-base: false | |
python-version: ${{ matrix.python-version }} | |
- name: Conda config | |
run: >- | |
conda config --set always_yes yes | |
--set changeps1 no | |
- name: Install diffpy.pdffit2 and requirements | |
run: | | |
conda install --file requirements/conda.txt | |
conda install --file requirements/test.txt | |
conda install --file requirements/build.txt | |
python -m pip install . --no-deps | |
- name: Start Xvfb for ubuntu-latest only | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get install -y xvfb | |
export DISPLAY=:99 | |
Xvfb :99 -screen 0 1024x768x16 & | |
- name: Validate diffpy.pdfffit2 | |
run: | | |
pytest --cov | |
coverage report -m | |
codecov | |
- name: Upload coverage to Codecov | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == env.LATEST_PYTHON_VERSION | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |