-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.24 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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"]
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 }}