mirror of
https://github.com/vee1e/KubeArmor.git
synced 2026-09-01 18:27:29 +00:00
29 lines
553 B
YAML
29 lines
553 B
YAML
name: ci-codespell
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- ".codespellrc"
|
|
- ".github/workflows/ci-codespell.yml"
|
|
- "**/*.go"
|
|
- "**/*.md"
|
|
- "**/*.yaml"
|
|
- "**/*.yml"
|
|
- "**/*.sh"
|
|
- "**/*.txt"
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
codespell:
|
|
name: Check misspelled words
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
check_hidden: true
|