.github/workflows/unittest.yml #670
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
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: '59 23 * * *' | |
jobs: | |
unittests: | |
name: ${{ matrix.os }}, ${{ matrix.environment-file }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 90 | |
strategy: | |
matrix: | |
os: ['macos-latest', 'ubuntu-latest', 'windows-latest'] | |
environment-file: [.ci/37.yaml, .ci/38.yaml, .ci/39.yaml] | |
include: | |
- environment-file: .ci/39-DEV.yaml | |
os: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: setup micromamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: ${{ matrix.environment-file }} | |
micromamba-version: 'latest' | |
- name: install spglm via pip | |
shell: bash -l {0} | |
run: pip install --upgrade git+https://github.com/pysal/spglm.git@master | |
- name: install spreg via pip | |
shell: bash -l {0} | |
run: pip install spreg | |
- name: install bleeding edge libpysal (only Ubuntu / Python 3.9) | |
shell: bash -l {0} | |
run: pip install git+https://github.com/pysal/libpysal.git@master | |
if: matrix.os == 'ubuntu-latest' && contains(matrix.environment-file, 'DEV') | |
- name: run tests - bash | |
shell: bash -l {0} | |
run: pytest -v mgwr --cov=mgwr --cov-report=xml --timeout=300 | |
if: matrix.os != 'windows-latest' | |
- name: run tests - powershell | |
shell: powershell | |
run: pytest -v mgwr --cov=mgwr --cov-report=xml --timeout=300 | |
if: matrix.os == 'windows-latest' | |
- name: codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
name: spot-codecov |