Module-ify and add some type hinting; move to async sqlite3 lib #552
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dev Dependencies | |
on: | |
push: | |
branches: | |
- dev | |
paths: | |
- 'pyproject.toml' | |
- 'poetry.lock' | |
- '.github/workflows/poetry*.yml' | |
pull_request: | |
branches: | |
- dev | |
paths: | |
- 'pyproject.toml' | |
- 'poetry.lock' | |
- '.github/workflows/poetry*.yml' | |
jobs: | |
poetry-dev-build: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
os: | |
- 'ubuntu-24.04' | |
- 'macos-14.0' | |
- 'windows-2022' | |
python-version: | |
- '3.11' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install latest version of Poetry | |
run: pip install --upgrade poetry pip setuptools wheel | |
- name: Get Poetry version | |
run: poetry --version | |
- name: Check pyproject.toml validity | |
run: poetry check --no-interaction | |
- name: install canary development dependencies | |
run: poetry install --no-interaction |