feat: add code language detector #11
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
# Copyright © 2024 KubeCub open source community. All rights reserved. | |
# Licensed under the MIT License (the "License"); | |
# you may not use this file except in compliance with the License. | |
name: Test repository spelling check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
run: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v2 | |
- name: Check spelling of md | |
uses: crate-ci/typos@master | |
with: | |
files: | |
./CONTIRIBUTING.md | |
./README.md | |
- name: Use custom config file | |
uses: crate-ci/typos@master | |
with: | |
files: ./file.txt | |
config: ./myconfig.toml | |
- name: Ignore implicit configuration file | |
uses: crate-ci/typos@master | |
with: | |
files: ./file.txt | |
isolated: true | |
- name: Writes changes in the local checkout | |
uses: crate-ci/typos@master | |
with: | |
write_changes: true |