Skip to content

prefix: refactor

prefix: refactor #1360

Workflow file for this run

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