| # Copyright (c) 2024-2026, The UW Lab Project Developers. (https://github.com/uw-lab/UWLab/blob/main/CONTRIBUTORS.md). | |
| # All Rights Reserved. | |
| # | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| name: Run linters using pre-commit | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| with: | |
| python-version: "3.12" | |
| - uses: pre-commit/action@v3.0.0 | |