Skip to content

Commit 2199ff6

Browse files
committed
debugging colcon
1 parent e25b971 commit 2199ff6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/test-shapely.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Python CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Check out the repository
11+
uses: actions/checkout@v3
12+
13+
#- name: Set up Python
14+
# uses: actions/setup-python@v3
15+
# with:
16+
# python-version: '3.x'
17+
18+
- name: List installed packages
19+
run: |
20+
pip freeze
21+
22+
- name: Test shapely import
23+
run: |
24+
python -c "from shapely import union_all; print('union_all imported successfully')"

0 commit comments

Comments
 (0)