feat: Design of EstimatorReport
#305
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reusable lint workflow | |
on: [workflow_call] | |
jobs: | |
lint-all-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Lint all files | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade pre-commit | |
pre-commit run --all-files check-yaml | |
pre-commit run --all-files check-toml | |
pre-commit run --all-files check-added-large-files | |
pre-commit run --all-files check-merge-conflict | |
pre-commit run --all-files detect-private-key | |
pre-commit run --all-files end-of-file-fixer | |
pre-commit run --all-files trailing-whitespace | |
pre-commit run --all-files typos | |
pre-commit run --all-files nbstripout |