generated from ludeeus/integration_blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ruff and validate against 3.11 and 3.12
- Loading branch information
Showing
2 changed files
with
27 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 |
---|---|---|
@@ -1,33 +1,41 @@ | ||
name: "Lint" | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths-ignore: | ||
- 'custom_components/battery_notes/data/**' | ||
paths: | ||
- '**.py' # Run if pushed commits include a change to a Python (.py) file. | ||
- '.github/workflows/*.yml' # Run if pushed commits include a change to a github actions workflow file. | ||
- 'requirements.txt' # Run if pushed commits include a change to the Python requirements.txt file. | ||
pull_request: | ||
branches: | ||
- "main" | ||
paths-ignore: | ||
- 'custom_components/battery_notes/data/**' | ||
paths: | ||
- '**.py' # Run if pushed commits include a change to a Python (.py) file. | ||
- '.github/workflows/*.yml' # Run if pushed commits include a change to a github actions workflow file. | ||
- 'requirements.txt' # Run if pushed commits include a change to the Python requirements.txt file. | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ruff: | ||
name: "Ruff" | ||
build: | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
matrix: | ||
python-version: ["3.12", "3.11"] | ||
steps: | ||
- name: "Checkout the repository" | ||
uses: "actions/checkout@v4" | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Set up Python" | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.11" | ||
cache: "pip" | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: "Install requirements" | ||
run: python3 -m pip install -r requirements.txt | ||
- name: Install dependencies from requirements.txt | ||
run: | | ||
if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi | ||
- name: "Run" | ||
run: python3 -m ruff check . | ||
- name: Analyse the code with ruff | ||
run: | | ||
python3 -m ruff check . |
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,4 +1,4 @@ | ||
colorlog==6.8.0 | ||
homeassistant==2023.7.0 | ||
pip>=21.0,<23.4 | ||
ruff==0.1.7 | ||
ruff==0.1.8 |