German translation #39
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
name: Lint | |
on: | |
pull_request: | |
branches: [releases] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements.test.txt | |
pip install -r requirements.dev.txt | |
- name: Run isort --check | |
run: | | |
isort --check custom_components/ics_calendar tests | |
- name: Run black --check | |
run: | | |
black --check custom_components/ics_calendar tests | |
- name: Run flake8 | |
run: | | |
flake8 | |
- name: Run pydocstyle | |
run: | | |
pydocstyle -v custom_components/ics_calendar tests | |
- name: Run pylint | |
run: | | |
pylint custom_components/ics_calendar |