Bump actions/checkout from 6.0.2 to 7.0.0 (#441) #1929
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: Linting | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| env: | |
| DEFAULT_PYTHON: 3.13 | |
| jobs: | |
| pre-commit: | |
| runs-on: "ubuntu-latest" | |
| name: Pre-commit | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v7.0.0 | |
| - name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: Upgrade pip | |
| run: | | |
| pip install --constraint=.github/workflows/constraints.txt pip | |
| pip --version | |
| - name: Install Python modules | |
| run: > | |
| pip install | |
| --constraint=.github/workflows/constraints.txt | |
| pre-commit ruff reorder-python-imports | |
| - name: Run pre-commit on all files | |
| run: | | |
| pre-commit run --all-files --show-diff-on-failure --color=always | |
| hacs: | |
| runs-on: "ubuntu-latest" | |
| name: HACS | |
| steps: | |
| - name: Check out the repository | |
| uses: "actions/checkout@v7.0.0" | |
| - name: HACS validation | |
| uses: "hacs/action@22.5.0" | |
| with: | |
| category: "integration" | |
| ignore: brands |