Add support for setting system date and time #105
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: Code Quality | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/** | |
| - backend/** | |
| - irrigation_pi/** | |
| - poetry.lock | |
| jobs: | |
| code-quality: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python environment | |
| uses: ./.github/actions/setup-environment | |
| - name: Install dependencies | |
| run: | | |
| poetry install --with dev --no-interaction --no-root | |
| - name: Run ruff | |
| run: | | |
| poetry run pre-commit run -a |