kubeedge/.github/workflows/codespell.yml
Gagan H R 6735c1b26e fix: adding required permissions to top level and jobs in the workflow
Signed-off-by: Gagan H R <hrgagan4@gmail.com>
2026-04-19 11:16:34 +00:00

24 lines
461 B
YAML

name: codespell
on: pull_request
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies with pip
run: pip install --no-warn-script-location --user codespell
- name: Spellcheck
run: make spellcheck