Skip to content

Bump kittycad from 0.7.2 to 0.7.4 (#364) #113

Bump kittycad from 0.7.2 to 0.7.4 (#364)

Bump kittycad from 0.7.2 to 0.7.4 (#364) #113

Workflow file for this run

name: ruff
on:
push:
branches: main
paths:
- '**.py'
- .github/workflows/ruff.yml
- 'pyproject.toml'
- 'requirements.txt'
pull_request:
paths:
- '**.py'
- .github/workflows/ruff.yml
- 'pyproject.toml'
- 'requirements.txt'
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
- name: Install deps
run: |
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv pip install \
ruff
- name: Run ruff
shell: bash
run: |
ruff check --output-format=github . */*/*.py
ruff format --check