feat(custom_diagram): Add recursion option #552
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
# SPDX-FileCopyrightText: 2022 Copyright DB InfraGO AG and the capellambse-context-diagrams contributors | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Lint | |
on: | |
push: | |
branches: ["*"] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Upgrade pip | |
run: |- | |
python -m pip install -U pip | |
- name: Install pre-commit | |
run: |- | |
python -m pip install pre-commit types-docutils | |
- name: Run Pre-Commit | |
run: |- | |
pre-commit run --all-files | |
pylint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Upgrade pip | |
run: |- | |
python -m pip install -U pip | |
- name: Install pylint | |
run: |- | |
python -m pip install pylint==2.13.9 | |
- name: Run pylint | |
run: |- | |
pylint -dfixme -- capellambse_context_diagrams tests || exit $(($? & ~24)) |