[pre-commit.ci] pre-commit autoupdate #425
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
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" } | |
defaults: | |
run: | |
shell: bash -el {0} | |
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 --yes | |
- name: Test GDAL installation | |
run: | | |
python -c "from osgeo import gdal" | |
gdalinfo --version | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install . | |
- name: Test import | |
run: python -c "import samgeo; print('samgeo import successful')" |