Bump actions/checkout from 5.0.0 to 6.0.0 #1068
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: Linting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - 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/[email protected] | |
| - name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
| uses: actions/[email protected] | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: Upgrade pip | |
| run: | | |
| pip install pip | |
| pip --version | |
| - name: Install Python modules | |
| run: | | |
| pip install pre-commit black flake8 reorder-python-imports pipreqs | |
| - 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/[email protected]" | |
| - name: HACS validation | |
| uses: "hacs/action@main" | |
| with: | |
| category: "integration" | |
| ignore: brands | |
| hassfest: | |
| runs-on: "ubuntu-latest" | |
| name: Hassfest | |
| steps: | |
| - name: Check out the repository | |
| uses: "actions/[email protected]" | |
| - name: Hassfest validation | |
| uses: "home-assistant/actions/hassfest@master" | |
| pytest: | |
| runs-on: "ubuntu-latest" | |
| name: Pytest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/[email protected] | |
| - name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
| uses: actions/[email protected] | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: Upgrade pip | |
| run: | | |
| pip install pip | |
| pip --version | |
| - name: Install dependencies | |
| run: | | |
| pip install -r requirements.txt | |
| - name: Run pytest | |
| run: | | |
| pytest --maxfail=3 --disable-warnings --color=yes |