Skip to content

Implement Land Obstacles #6

Implement Land Obstacles

Implement Land Obstacles #6

Workflow file for this run

name: Python CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip3 install shapely==2.0.6
- name: List installed packages
run: |
pip freeze
- name: Test shapely import
run: |
python3 -c "from shapely import union_all; print('union_all imported successfully')"