Skip to content

Commit

Permalink
Merge pull request #639 from martinfleis/reverse_deps_testing
Browse files Browse the repository at this point in the history
GHA: include reverse dependency testing
  • Loading branch information
martinfleis committed Jan 24, 2024
2 parents e70cae1 + 9f3b412 commit d401e8a
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/reverse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Test reverse dependencies
on:
push:
branches: [main]
schedule:
- cron: "0 0 * * 1,4"
workflow_dispatch:
inputs:
version:
description: Manual reverse dependency testing
default: test
required: false

jobs:
reverse_dependencies:
name: Reverse dependency testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: scientific-python/reverse-dependency-testing-action@main
with:
package_name: libpysal
ignore: >-
fine
tigernet
cenpy
autoesda
region
greedy
pysal
mesa-geo
include: >-
mapclassify
install: >-
setuptools-scm
py-opencv
h3-py
hdbscan
pandana
astropy
geodatasets
bokeh
pulp
install_pip: >-
opencv-contrib-python
KDEpy
installation_command: >-
pip install -e .; python -c 'import libpysal; libpysal.examples.fetch_all()'
fail_on_failure: true
verbose: true
parallel: true

0 comments on commit d401e8a

Please sign in to comment.