Update Shapely 2.0.6 #49
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
os: [ubuntu-latest, macOS-latest] | |
steps: | |
- name: Install dependencies (GDAL) | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt install libgdal-dev gdal-bin | |
elif [ "$RUNNER_OS" == "macOS" ]; then | |
brew install gdal | |
else | |
echo "$RUNNER_OS not supported" | |
exit 1 | |
fi | |
gdal-config --version | |
shell: bash | |
- uses: actions/checkout@v2 | |
- name: Install Poetry | |
run: | | |
pip3 install poetry | |
shell: bash | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Run tests | |
run: | | |
poetry run pytest --cov=satproc --cov-report=xml tests | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v2 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos |