Skip to content

Add poll support to agenda generate command #414

Add poll support to agenda generate command

Add poll support to agenda generate command #414

Workflow file for this run

name: Format & Type Check
on: [push, pull_request]
jobs:
formatting:
runs-on: ubuntu-latest
name: "Check code style"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
version-file: "pyproject.toml"
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Run ruff via nox
run: |
uv sync --group nox
uv run nox -s format_check
pyright:
runs-on: ubuntu-latest
name: "Type checking"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
version-file: "pyproject.toml"
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Run pyright via nox
run: |
uv sync --group nox
uv run nox -s pyright