Continuous Integration #480
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: '59 23 * * *' | |
jobs: | |
tests: | |
name: ${{ matrix.os }}, ${{ matrix.environment-file }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
environment-file: [ | |
.ci/38-MIN.yaml, | |
.ci/39.yaml, | |
.ci/310.yaml, | |
.ci/311.yaml, | |
.ci/311-DEV.yaml, | |
] | |
include: | |
- environment-file: .ci/311.yaml | |
os: macos-latest | |
- environment-file: .ci/311.yaml | |
os: windows-latest | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: setup micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ${{ matrix.environment-file }} | |
micromamba-version: 'latest' | |
############################################################################## | |
#- name: install pulp via pip | |
# run: | | |
# pip install pulp | |
# pulptest | |
############################################################################## | |
- name: environment info | |
run: | | |
micromamba info | |
micromamba list | |
- name: spatial versions | |
run: 'python -c "import geopandas; geopandas.show_versions();"' | |
- name: run tests - bash | |
run: | | |
pytest spopt -v -r a -n auto --cov spopt --color yes --cov-report term-missing --cov-append --cov-report xml . | |
- name: codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
name: spopt-codecov | |
- name: Generate and publish the report | |
if: | | |
failure() | |
&& steps.status.outcome == 'failure' | |
&& github.event_name == 'schedule' | |
&& github.repository_owner == 'pysal' | |
uses: xarray-contrib/issue-from-pytest-log@v1 | |
with: | |
log-path: pytest-log.jsonl |