Skip to content

Bump github/codeql-action from 2.3.5 to 2.3.6 (#1303) #919

Bump github/codeql-action from 2.3.5 to 2.3.6 (#1303)

Bump github/codeql-action from 2.3.5 to 2.3.6 (#1303) #919

Workflow file for this run

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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
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"