Skip to content

ci: simplify tagging and publishing process #21

ci: simplify tagging and publishing process

ci: simplify tagging and publishing process #21

Workflow file for this run

name: Style
on:
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
# setup the repository
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install uv
uses: astral-sh/setup-uv@v4
- run: |
uv venv
uv sync
source .venv/bin/activate
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
# linting
- uses: chartboost/ruff-action@v1
# type checking
- uses: jakebailey/pyright-action@v2
with:
pylance-version: latest-release