Skip to content

Update acknowledgements for manuscript revision support #44

Update acknowledgements for manuscript revision support

Update acknowledgements for manuscript revision support #44

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
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13""]

Check failure on line 17 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
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 }}