Add Support to manually distribute CP machines in different zones with AvailabilityZones field #1030
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
# Helps catch spelling errors | |
name: Codespell | |
on: [ pull_request ] | |
jobs: | |
codespell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 # v2.0 | |
with: | |
skip: .git,_artifacts,*.sum | |
ignore_words_file: .codespellignore | |
check_filenames: true | |
check_hidden: true |