DAOS-16038 pool: Enable pool list for clients #38542
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,./.git,./src/control/security/testdata/certs/source.txt | |
ignore_words_file: ci/codespell.ignores | |
builtin: clear,rare,informal,names,en-GB_to_en-US |