blank-screens: add clear command #1332
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
name: Check Spelling | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
spell: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install workflow dependencies | |
run: | | |
sudo apt-get -y install codespell | |
- name: Check source files for spelling mistakes | |
run: | | |
./.make spell | |
env: | |
SHELL_VERBOSE: 1 |