mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 10:25:13 +00:00
23 lines
395 B
YAML
23 lines
395 B
YAML
name: Check Spelling
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Check spelling with codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
check_filenames: true
|
|
check_hidden: false
|