方便 mirror 之类的平台分发,主要是图片格式 #689
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codespell | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
codespell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run CodeSpell | |
uses: codespell-project/[email protected] | |
with: | |
check_filenames: true | |
ignore_words_file: .codespellignore | |
skip: "./.git,package-lock.json,./Languages/es,./Languages/pt-br" |