fix(auth): filter tools/list against the normalized server name #466
Workflow file for this run
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
| name: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| # Match .pre-commit-config.yaml's default_language_version (python3.14) | |
| # and the project's requires-python; without this the runner's default | |
| # Python is used and pre-commit can't find a 3.14 interpreter. | |
| python-version: "3.14" | |
| - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 | |
| env: | |
| # The pytest-fast hook shells out to `uv run` and needs MongoDB, neither | |
| # of which exists in this lint-only runner. Test coverage is provided by | |
| # the dedicated registry-test.yml workflow (which provisions MongoDB); | |
| # this hook stays for local pre-commit use. | |
| SKIP: pytest-fast |