DAOS-15047 test: harden regex for engine started #35927
Workflow file for this run
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 | |
on: | |
pull_request: | |
jobs: | |
Codespell: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install extra python packages | |
run: pip install --requirement utils/cq/requirements.txt | |
- name: Run check | |
uses: codespell-project/actions-codespell@master | |
with: | |
skip: ./src/control/vendor,./src/control/go.sum,./.git | |
ignore_words_file: ci/codespell.ignores | |
builtin: clear,rare,informal,names,en-GB_to_en-US |