Skip to content

Bump the dev-dependencies group with 3 updates #372

Bump the dev-dependencies group with 3 updates

Bump the dev-dependencies group with 3 updates #372

Workflow file for this run

name: Check Spelling
on:
pull_request:
branches:
- main
jobs:
check_spelling:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install spell
run: sudo apt-get install -y spell
- name: Check spelling
run: |
./tools/check_spelling.sh ./README.md
./tools/check_spelling.sh ./container/README.md
./tools/check_spelling.sh ./core/common/README.md
./tools/check_spelling.sh ./dtdl-parser/README.md
./tools/check_spelling.sh ./docs/design/README.md
./tools/check_spelling.sh ./samples/container/README.md
./tools/check_spelling.sh ./samples/managed_subscribe/README.md
shell: bash