Add workaround for scipy.special.factorial2 changes #171
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: CI | |
on: | |
push: | |
tags: | |
- '[1-9]+.[0-9]+.[0-9]+*' | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
# These are quick tests using Python's venv on different Python versions. | |
test-venv: | |
timeout-minutes: 30 | |
if: "! startsWith(github.ref, 'refs/tags')" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
python-version: 3.7 | |
- os: ubuntu-latest | |
python-version: 3.8 | |
- os: ubuntu-latest | |
python-version: 3.9 | |
- os: macos-latest | |
python-version: 3.7 | |
runs-on: ${{ matrix.os }} | |
env: | |
# Tell Roberto to upload coverage results | |
ROBERTO_UPLOAD_COVERAGE: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Fetch base branch (usually master) | |
run: | | |
if [[ -n "${GITHUB_HEAD_REF}" ]]; then | |
git fetch origin ${GITHUB_BASE_REF} --depth=2 | |
fi | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install Pip and Roberto | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install roberto>=2.0.0 | |
- name: Test with Roberto | |
run: | | |
if [[ -n "${GITHUB_HEAD_REF}" ]]; then | |
ROBERTO_GIT_MERGE_BRANCH=${GITHUB_SHA} \ | |
ROBERTO_GIT_BRANCH=${GITHUB_BASE_REF} \ | |
python -m roberto | |
else | |
ROBERTO_TESTENV_USE=venv \ | |
python -m roberto robot | |
fi | |
test-conda: | |
# This is a slow test in a Conda environment, including deployment of | |
# tagged releases. | |
timeout-minutes: 30 | |
if: (github.ref == 'refs/heads/master') || startsWith(github.ref, 'refs/tags') | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
env: | |
ROBERTO_UPLOAD_COVERAGE: 1 | |
ROBERTO_PACKAGE_MANAGER: conda | |
ROBERTO_TESTENV_USE: conda | |
ROBERTO_DEPLOY_NOARCH: 1 | |
TWINE_USERNAME: theochem | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/miniconda3 | |
!~/miniconda3/conda-bld | |
!~/miniconda3/locks | |
!~/miniconda3/pkgs | |
!~/miniconda3/var | |
!~/miniconda3/envs/*/conda-bld | |
!~/miniconda3/envs/*/locks | |
!~/miniconda3/envs/*/pkgs | |
!~/miniconda3/envs/*/var | |
key: ${{ runner.os }}-conda-4 | |
- name: Install Roberto | |
run: | | |
python -m pip install roberto>=2.0.0 | |
- name: Test and deploy with Roberto | |
run: | | |
python -m roberto robot |