-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 879 Bytes
/
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
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