add obj det test #3595
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: Check pre-commit hooks pass | |
| on: | |
| push: | |
| branches: "**" | |
| jobs: | |
| check-pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.10" | |
| - name: Install pre-commit | |
| run: pip install pre-commit && pre-commit install | |
| - name: Run pre-commit. This will fail if pre-commit hooks fail. | |
| run: pre-commit run --all-files |