Support comments in mlr -s
files
#984
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: Codespell | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# Start the job on all pushes | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Set the Job | |
jobs: | |
build: | |
name: Codespell | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
# Load all steps | |
steps: | |
# Check out the code base | |
- name: Check out code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
# Run linter against code base | |
# https://github.com/codespell-project/codespell | |
- name: Codespell | |
uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 | |
with: | |
check_filenames: true | |
ignore_words_file: .codespellignore | |
skip: "*.csv,*.dkvp,*.txt,*.js,*.html,*.map,*.z,./tags,./test/cases,./docs/src/shapes-of-data.md.in,./docs/src/shapes-of-data.md,test/input/latin1.xtab" |