DRIVERS-2922: Allow valid SRV hostnames with fewer than 3 parts #823
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: Lint Files | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
# Run "pre-commit run --all-files" | |
pre-commit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
- name: "Run pre-commit" | |
run: | | |
pip install -U -q pre-commit | |
pre-commit run --all-files --hook-stage manual |