Skip to content

Refactor: address PR #1457 review feedback (rebased on main, with tests) #1353

Refactor: address PR #1457 review feedback (rebased on main, with tests)

Refactor: address PR #1457 review feedback (rebased on main, with tests) #1353

Workflow file for this run

name: Lint
on:
push:
branches: ["main"]
pull_request:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run pre-commit 💅
run: tox
env:
TOXENV: pre-commit