-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added workflow to check documentation
- Loading branch information
Pavlo Dudnytskyi
committed
Jun 24, 2024
1 parent
499d8e0
commit ee86896
Showing
5 changed files
with
41 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: documentation check | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: [ "master", "dev" , "experimental" ] | ||
|
||
jobs: | ||
tests: | ||
name: documentation check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4.1.3 | ||
- name: Run script and save results | ||
run: python docs/script/make_doc.py README.tmp | ||
- name: Compare temp file with readme.rst | ||
run: diff -u --strip-trailing-cr README.rst README.tmp |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Gitignore settings for ESPHome | ||
/.esphome/ | ||
__pycache__/ | ||
/.vscode/ | ||
/secrets.yaml | ||
/buildlog.txt | ||
*.bak | ||
*.local.yaml | ||
# Gitignore settings for ESPHome | ||
/.esphome/ | ||
__pycache__/ | ||
/.vscode/ | ||
/secrets.yaml | ||
/buildlog.txt | ||
*.bak | ||
*.local.yaml | ||
*.tmp |
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
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
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