Skip to content

Add separate workflows for building and publishing Python package #4

Add separate workflows for building and publishing Python package

Add separate workflows for building and publishing Python package #4

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@v2
with:
auto-update-conda: true
python-version: 3.8
channels: conda-forge
activate-environment: pyforestscan_env
- name: Create Conda environment
run: conda create --name pyforestscan_env python=3.8 pdal -c conda-forge
- name: Activate Conda environment
run: source activate pyforestscan_env
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: pytest