优化智米空调zhimi.aircondition.v1的音量、扫风角度控制,新增室外温湿度获取 #2064
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: | |
jobs: | |
validate-hassfest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@v4 | |
- name: 🏃 Hassfest validation | |
uses: home-assistant/actions/hassfest@master | |
validate-hacs: | |
runs-on: ubuntu-latest | |
name: With HACS Action | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@v4 | |
- name: 🏃 HACS validation | |
uses: hacs/action@main | |
with: | |
category: integration | |
ignore: hacs | |
validate-homeassistant: | |
name: With Home Assistant | |
strategy: | |
matrix: | |
channel: [stable, dev, "2023.7.0"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@v4 | |
- name: 🛠️ Home Assistant configuration | |
run: | | |
mkdir ./test_configuration | |
cp -r ./custom_components ./test_configuration | |
echo "default_config:" >> ./test_configuration/configuration.yaml | |
echo "xiaomi_miot:" >> ./test_configuration/configuration.yaml | |
echo " language: zh" >> ./test_configuration/configuration.yaml | |
echo " device_customizes:" >> ./test_configuration/configuration.yaml | |
echo " brand.device.model:" >> ./test_configuration/configuration.yaml | |
echo " miot_local: true" >> ./test_configuration/configuration.yaml | |
- name: 🏡 Home Assistant validation | |
id: homeassistant | |
uses: ludeeus/setup-homeassistant@main | |
with: | |
tag: ${{ matrix.channel }} | |
config-dir: test_configuration |