Skip to content

Bump ruff from 0.2.1 to 0.4.4 #224

Bump ruff from 0.2.1 to 0.4.4

Bump ruff from 0.2.1 to 0.4.4 #224

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test with Pre-commit
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5.0.0
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip build setuptools
pip install . .[test]
- name: Lint/test with pre-commit
run: pre-commit run --all-files