fix: swap latest_run_time and latest_run_time_utc in _parse_test_db_row #2909
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: Run pre-commit hooks | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| code-quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Elementary | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| # mainly needed so mypy will have the dependencies it needs | |
| - name: Install elementary | |
| run: pip install -e . | |
| - name: Install dev requirements | |
| run: pip install -r dev-requirements.txt | |
| - name: Run pre-commit hooks | |
| run: pre-commit run --all-files --show-diff-on-failure |