add message about new driver #46
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: Codespell CI | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
codespell: | |
name: Codespell CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install dependencies | |
run: sudo apt update -y && sudo apt install -y codespell | |
- name: Run codespell | |
run: | | |
echo "::group::list files" | |
find . -type f \( -name '*.sh' -o -name '*.md' \) -print0 | xargs -0 -n1 ls | |
echo "::endgroup::" | |
echo "::group::codespell" | |
find . -type f \( -name '*.sh' -o -name '*.md' \) -print0 | xargs -0 -n1 codespell | |
echo "::endgroup::" |