style: apply ruff format to tests/test_edge_cases.py #24
This file contains hidden or 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
| # Automated Code Review — caller workflow | |
| # | |
| # Drop this file into any Coding-Dev-Tools repo at | |
| # .github/workflows/auto-code-review.yml to enable | |
| # automated PR code review (lint, format, secret detection, | |
| # TODO/FIXME check, large file check, and PR comment summary). | |
| # | |
| # The reusable workflow is defined in the org .github repo: | |
| # Coding-Dev-Tools/.github/.github/workflows/auto-code-review.yml@main | |
| name: Auto Code Review | |
| on: | |
| pull_request: | |
| branches: [main, master] | |
| types: [opened, synchronize, reopened] | |
| push: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| security-events: write | |
| jobs: | |
| code-review: | |
| uses: Coding-Dev-Tools/.github/.github/workflows/auto-code-review.yml@main |