Skip to content

feature: upload polygons #129

feature: upload polygons

feature: upload polygons #129

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install --no-interaction --no-root
poetry add --group dev pytest-codeblocks
# - name: Test with pytest
# run: |
# poetry run pytest docs/examples --codeblocks -v
- name: Build wheels
run: |
poetry build