Update env var for Sonarscan workflow #1276
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
# If you change this name also do it in linting.yml | |
name: Linting | |
on: | |
pull_request: | |
paths-ignore: | |
- "docs/**/*.md" | |
- "docs/**/*.png" | |
- "docs/**/*.jpg" | |
- "docs/**/*.yml" | |
- "pebblo_safeloader/**/*.md" | |
- "pebblo_saferetriever/**/*.md" | |
- "**/pyproject.toml" | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Skip mypy | |
run: echo "Skipped mypy" | |
pylint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Skip pylint | |
run: echo "Skipped pylint" |