Skip to content

Update STA storage crs #220

Update STA storage crs

Update STA storage crs #220

Workflow file for this run

name: Pyright
on:
push:
workflow_dispatch: # Allows manual triggering of the workflow
jobs:
uv-example:
runs-on: ubuntu-latest
name: python
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --all-extras --dev
- name: Install pyright
run: uv tool install pyright
- name: Run pyright
run: uv run pyright
# - name: Run docker-compose
# uses: hoverkraft-tech/[email protected]
# with:
# compose-file: "./docker-compose.yaml"
# - name: Run tests
# # For example, using `pytest`
# run: uv run pytest