Add points_to_line function #1516
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: | |
- 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.11" } | |
env: | |
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk | |
steps: | |
- name: CHECKOUT CODE | |
uses: actions/checkout@v4 | |
- name: SETUP PYTHON | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.config.py }} | |
- name: Install package | |
run: pip install . | |
- name: Test import | |
run: python -c "import leafmap; print('leafmap import successful')" |