mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 17:04:50 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](755da8c3cf...ac59398561)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
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@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
|
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@9c63fddd79f483308bfaea379a505dcd361b5d1d
|
|
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"
|