-
Notifications
You must be signed in to change notification settings - Fork 67
42 lines (38 loc) · 1.12 KB
/
python-code-format.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Check python code formatting
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
schedule:
- cron: "0 5 * * *"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-22.04
name: Check python code formatting
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
- name: Analysing the code with pylint
run: |
python -m pylint denonavr tests
- name: Lint with flake8
run: |
python -m flake8 denonavr tests --count --show-source --statistics
- name: Check code formatting with isort
run: |
python -m isort denonavr/. tests/. --check --verbose
- name: Check code formatting with black
run: |
python -m black denonavr tests --check --verbose