Skip to content

Bump the all-dependencies group across 1 directory with 9 updates #363

Bump the all-dependencies group across 1 directory with 9 updates

Bump the all-dependencies group across 1 directory with 9 updates #363

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 .
shell: bash