Skip to content

Bump ruff from 0.1.8 to 0.1.12 #120

Bump ruff from 0.1.8 to 0.1.12

Bump ruff from 0.1.8 to 0.1.12 #120

Workflow file for this run

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