Add dashboard and view strategies to deprecate lovelace YAML #1465
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: Pytest | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 7 1-28/7 * *" | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: Run tests | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.13" | |
| steps: | |
| - name: 📥 Checkout the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: 🛠️ Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: 📦 Install requirements | |
| run: | | |
| pip install tox tox-gh-actions | |
| - name: 🏃 Test with tox | |
| run: tox | |
| - name: 📤 Upload coverage to Codecov | |
| uses: "actions/upload-artifact@v4" | |
| with: | |
| name: coverage-data | |
| path: "coverage.xml" | |
| coverage: | |
| runs-on: ubuntu-latest | |
| needs: tests | |
| steps: | |
| - name: 📥 Checkout the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: 📥 Download coverage data | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: coverage-data | |
| - name: 📤 Upload coverage report | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} # required |