ci: add dependabot #128
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: geosPythonPackages CI | |
on: pull_request | |
# Cancels in-progress workflows for a PR when updated | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
max-parallel: 3 | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
package-name: ["geos-ats", "geos-mesh", "geos-timehistory", "geos-xml-tools", "hdf5-wrapper", "pygeos-tools"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mpi4py/setup-mpi@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install package | |
# working-directory: ./${{ matrix.package-name }} | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pytest yapf toml | |
python -m pip install ${{ matrix.package-name }}/ | |
- name: Lint with yapf | |
# working-directory: ./${{ matrix.package-name }} | |
run: | | |
yapf -r --diff ${{ matrix.package-name }} --style .style.yapf | |
# - name: Test with pytest | |
# working-directory: ./${{ matrix.package-name }} | |
# run: | | |
# pytest |