Skip to content

[pre-commit.ci] pre-commit autoupdate (#51) #25

[pre-commit.ci] pre-commit autoupdate (#51)

[pre-commit.ci] pre-commit autoupdate (#51) #25

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: macOS build
jobs:
test-macOS:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.py }})
strategy:
fail-fast: false
matrix:
config:
- { os: macOS-latest, py: "3.12" }
env:
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: true
python-version: ${{ matrix.config.py }}
channels: conda-forge,defaults
channel-priority: true
miniconda-version: latest
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Testing conda
run: |
conda info
conda list
- name: Install GDAL
run: |
conda install -c conda-forge mamba --yes
mamba install -c conda-forge gdal pyproj richdem lidar --yes
# pip install -U whitebox
# - name: Test GDAL installation
# run: |
# python -c "from osgeo import gdal"
# gdalinfo --version
# - name: Install dependencies
# run: |
# pip install -r requirements.txt -r requirements_dev.txt
# pip install .
# - name: Test import
# run: python -c "import lidar; print('lidar import successful')"