mirror of
https://github.com/apache/rocketmq.git
synced 2026-09-19 02:23:24 +08:00
18 lines
485 B
YAML
18 lines
485 B
YAML
name: Misspell Check
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
push:
|
|
branches: [master, develop]
|
|
jobs:
|
|
misspell-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install misspell
|
|
run: |
|
|
curl -L -o ./install-misspell.sh https://git.io/misspell
|
|
sh ./install-misspell.sh
|
|
- name: Run misspell
|
|
run: find . -type f -print0 | xargs -0 bin/misspell -error -i transfered,derivate
|