-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (57 loc) · 1.86 KB
/
pythonpackage.yaml
File metadata and controls
62 lines (57 loc) · 1.86 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
name: Python package
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
platform: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- # No pybind11-rdp wheel available for Python 3.14 on windows
platform: windows-latest
python-version: "3.14"
runs-on: ${{ matrix.platform }}
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
miniforge-version: latest
- name: Install dependencies
run: |
conda install -c conda-forge gdal
python -m pip install --upgrade pip hatch
- name: Test with coverage with all optional dependencies
run: |
hatch run geotiff:all
- name: Run unit test without Geotiff dependencies
run: |
hatch run test
- name: Ensure script entrypoint is executable
run: |
hatch run pyhgtmap -v
- name: Report test-coverage to DeepSource
# Deepsource doesn't seem super stable
continue-on-error: true
run: |
# Install the CLI
curl https://deepsource.io/cli | sh
# Send the report to DeepSource
./bin/deepsource report --analyzer test-coverage --key python --value-file ./coverage.xml
env:
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
- name: Report test-coverage to Codacy
continue-on-error: true
run: |
bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r ./coverage.xml
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}