fix for tabs in editor dialog not showing in HA 2023.9 #1903
This file contains 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: Validate | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
hacs_validate: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v2" | |
- name: HACS validation | |
uses: "hacs/action@main" | |
with: | |
CATEGORY: "plugin" | |
language_validate: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v2" | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8.x' | |
- uses: actions/cache@v2 | |
name: Load pip cache | |
with: | |
path: ~/.cache/pip | |
key: language-validate-pip-cache | |
- name: Install dependencies | |
run: | | |
python3 -m pip install colorama setuptools | |
python3 -m pip install pyicu | |
- name: Language validation | |
run: | | |
script -e -c "python3 .github/workflows/check.py" |