Skip to content

Stop vendoring GeoTessCPP #36

Stop vendoring GeoTessCPP

Stop vendoring GeoTessCPP #36

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [macOS-13]
# os: [ubuntu-latest, macOS-latest, windows-latest]
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies and package with Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
environment-file: environment-dev.yml
# activate-environment: geotess-dev
channels: conda-forge
channel-priority: strict
- name: Install package
run: |
conda init bash
conda activate test
conda list
ls "$CONDA_PREFIX/include/geotesscpp"
pip install .
- name: Test with pytest
run: |
conda activate test
pytest -v