Prevent blocking call in translit #36
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: CI | |
on: | |
push: | |
jobs: | |
black: | |
name: Python Code Format Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code from GitHub | |
uses: "actions/checkout@main" | |
- name: Black Code Format Check | |
uses: lgeiger/black-action@master | |
with: | |
args: ". --check --fast --diff" | |
validate: | |
name: Check hassfest | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Check out code from GitHub | |
uses: "actions/checkout@main" | |
- name: Run hassfest | |
uses: home-assistant/actions/hassfest@master |