mirror of
https://github.com/vee1e/kubeedge.git
synced 2026-09-03 11:18:05 +00:00
24 lines
461 B
YAML
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
|