Merge pull request #16 from iosefa/next #33
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: Build and Test Python Package | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Install Miniconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
- name: Create Conda environment with Python and PDAL | |
run: | | |
conda create --name pyforestscan_env python=${{ matrix.python-version }} pdal gdal -c conda-forge -v | |
- name: Activate Conda environment and install dependencies | |
shell: bash -l {0} | |
run: | | |
conda activate pyforestscan_env | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
- name: Run tests | |
shell: bash -l {0} | |
run: | | |
conda activate pyforestscan_env | |
pytest --cov --cov-report=xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |