Skip to content

Commit

Permalink
update ruff and validate against 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bmos committed Dec 15, 2023
1 parent d54ddc7 commit 9ae1531
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 19 deletions.
44 changes: 26 additions & 18 deletions .github/workflows/lint.yml
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 .
2 changes: 1 addition & 1 deletion requirements.txt
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

0 comments on commit 9ae1531

Please sign in to comment.