Skip to content

Update version to 0.1.5 in setup.py #15

Update version to 0.1.5 in setup.py

Update version to 0.1.5 in setup.py #15

Workflow file for this run

name: Build and Test Python Package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
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: "3.10"
channels: conda-forge
- name: Create Conda environment with Python 3.10 and PDAL
run: |
conda create --name pyforestscan_env python=3.10 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