Update strategies on R min deps check workflow #967
Workflow file for this run
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: SuperLinter 🦸♀️ | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
branches: | |
- main | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
lintr_error_on_lint: | |
description: Produce an error when lints are found | |
required: false | |
type: boolean | |
default: true | |
concurrency: | |
group: lint-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: SuperLinter 🦸♂️ | |
runs-on: ubuntu-latest | |
if: > | |
!contains(github.event.commits[0].message, '[skip linter]') | |
&& github.event.pull_request.draft == false | |
steps: | |
- name: Checkout repo 🛎 | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Override SuperLinter configs 💾 | |
run: | | |
# Override markdownlint default config | |
[ ! -e .markdownlint.yaml ] && cat > .markdownlint.yaml <<EOF | |
############### | |
# Rules by id # | |
############### | |
MD004: false # Unordered list style | |
MD007: | |
indent: 2 # Unordered list indentation | |
MD013: | |
line_length: 800 # Line length | |
MD026: | |
punctuation: ".,;:!。,;:" # List of not allowed | |
MD029: false # Ordered list item prefix | |
MD033: false # Allow inline HTML | |
MD036: false # Emphasis used instead of a heading | |
################# | |
# Rules by tags # | |
################# | |
blank_lines: true # Error on blank lines | |
EOF | |
shell: bash | |
- name: Lint Code Base 🧶 | |
uses: github/super-linter/slim@v4 | |
env: | |
LINTER_RULES_PATH: / | |
DEFAULT_BRANCH: main | |
FILTER_REGEX_EXCLUDE: NEWS.md|design/.*|testthat/_snaps/.* | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_BASH: true | |
VALIDATE_DOCKERFILE: true | |
VALIDATE_MARKDOWN: true | |
MARKDOWN_CONFIG_FILE: .markdownlint.yaml | |
VALIDATE_R: true | |
VALIDATE_YAML: true | |
LINTR_ERROR_ON_LINT: ${{ inputs.lintr_error_on_lint }} |