Skip to content

Bump ruff from 0.9.0 to 0.9.1 #378

Bump ruff from 0.9.0 to 0.9.1

Bump ruff from 0.9.0 to 0.9.1 #378

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
- name: Format
run: |
ruff format --check
- name: Lint
run: |
ruff check --output-format=github
- name: pytest
run: |
python -m pytest --capture=no tests/