Skip to content

Add notice generation workflow, toolchain file, and missing readmes #17

Add notice generation workflow, toolchain file, and missing readmes

Add notice generation workflow, toolchain file, and missing readmes #17

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