Skip to content

Commit 4ec76a8

Browse files
authored
Merge pull request #1 from home-assistant-ecosystem/action
Use black-check
2 parents 52d06cb + cac6d90 commit 4ec76a8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,20 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [ 3.8, 3.9 ]
15+
python-version: [ 3.9, "3.10" ]
1616

1717
steps:
1818
- uses: actions/checkout@v2
19+
1920
- name: Set up Python ${{ matrix.python-version }}
2021
uses: actions/setup-python@v2
2122
with:
2223
python-version: ${{ matrix.python-version }}
24+
2325
- name: Install dependencies
2426
run: |
2527
python -m pip install --upgrade pip
2628
python setup.py install
29+
2730
- name: Black Code Formatter
28-
uses: lgeiger/black-action@v1.0.1
31+
uses: jpetrucciani/black-check@22.12.0

0 commit comments

Comments
 (0)