miller/.github/workflows/codespell.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 35: mapping key "exclude_file" already defined at line 34
John Kerl 1b9526e585
More codespell fixes (#834)
* Fix mlr tail -n4

* More codespell fixes
2022-01-03 21:40:53 -05:00

36 lines
898 B
YAML

name: Codespell
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
# Start the job on all push #
on:
push:
pull_request:
workflow_dispatch:
# Set the Job #
jobs:
build:
name: Codespell
# Set the agent to run on
runs-on: ubuntu-latest
# Load all steps #
steps:
# Checkout the code base #
- name: Checkout Code
uses: actions/checkout@v2.4.0
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 #
- name: Codespell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
ignore_words_file: .codespellignore
exclude_file: docs/src/data/english-words.txt
exclude_file: docs/src/data/colours.csv