Skip to content

Bump kittycad from 0.6.15 to 0.6.16 #78

Bump kittycad from 0.6.15 to 0.6.16

Bump kittycad from 0.6.15 to 0.6.16 #78

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
# Installation instructions are from: https://python-poetry.org/docs/
- name: Install dependencies
shell: bash
run: |
pip install \
ruff
- name: Run ruff
shell: bash
run: |
ruff check --output-format=github . */*/*.py