Add formatted on_time value #13
Workflow file for this run
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: Pull actions | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: "ubuntu-latest" | |
name: Validate | |
steps: | |
- uses: "actions/[email protected]" | |
- name: HACS validation | |
uses: "hacs/action@main" | |
with: | |
category: "integration" | |
ignore: brands | |
- name: Hassfest validation | |
uses: "home-assistant/actions/hassfest@master" | |
style: | |
runs-on: "ubuntu-latest" | |
name: Check style formatting | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "actions/[email protected]" | |
with: | |
python-version: "3.x" | |
- run: python3 -m pip install black | |
- run: black . | |
tests: | |
# Tests don't run in Gitlab ci environment | |
if: 0 | |
runs-on: "ubuntu-latest" | |
name: Run tests | |
steps: | |
- name: Check out code from GitHub | |
uses: "actions/checkout@v3" | |
- name: Setup Python | |
uses: "actions/[email protected]" | |
with: | |
python-version: "3.8" | |
- name: Install requirements | |
run: python3 -m pip install -r requirements_test.txt | |
- name: Run tests | |
run: | | |
pytest \ | |
-qq \ | |
--timeout=9 \ | |
--durations=10 \ | |
-n auto \ | |
--cov custom_components.integration_blueprint \ | |
-o console_output_style=count \ | |
-p no:sugar \ | |
tests |