Skip to content

debugging colcon

debugging colcon #1

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: List installed packages
run: |
pip freeze
- name: Test shapely import
run: |
python -c "from shapely import union_all; print('union_all imported successfully')"