This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
Bump commons-io:commons-io in /code-generation/generator #6
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: cspell | |
on: [push] | |
jobs: | |
cspell: | |
name: cspell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
path: aws-sdk-cpp | |
- name: Install Dependencies | |
run: | | |
sudo npm install -g cspell | |
- name: cspell | |
run: | | |
cd aws-sdk-cpp | |
export CSPELL_OUTPUT=$(sudo cspell --no-summary "**.txt" "aws-cpp-sdk-core/**/*.h" "aws-cpp-sdk-core/**/*.cpp") | |
if [ -n "$CSPELL_OUTPUT" ]; then echo "$CSPELL_OUTPUT" && exit 1; fi; |