Skip to content

Ruff life v 2.0

Ruff life v 2.0 #105

Workflow file for this run

name: Run code formatters
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.11.10
uses: actions/setup-python@v2
with:
python-version: 3.11.10
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install -e .[dev]
- name: init pre-commit
run: pre-commit install
- name: Run pre-commit hooks
run: pre-commit run