Skip to content

Commit

Permalink
ci: fix pdal
Browse files Browse the repository at this point in the history
  • Loading branch information
HideBa committed Feb 4, 2024
1 parent eedcb80 commit 6f586b2
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,20 @@ jobs:
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies with Poetry
- name: Configure Poetry
run: |
poetry install
poetry config virtualenvs.create true
poetry config virtualenvs.in-project true
- name: Install dependencies excluding PDAL
run: |
poetry add pdal --optional
poetry install --no-root
- name: Install PDAL Python package
run: |
source .venv/bin/activate
pip install pdal==3.2.3
- name: Linting
run: |
Expand Down

0 comments on commit 6f586b2

Please sign in to comment.