Skip to content

minor fixes + integration tests #9742

minor fixes + integration tests

minor fixes + integration tests #9742

Workflow file for this run

name: cspell
on: [push]
permissions:
contents: read
jobs:
cspell:
name: cspell
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
with:
path: aws-sdk-cpp
persist-credentials: false
- name: Install Dependencies
run: |
sudo npm install -g cspell
- name: cspell
run: |
cd aws-sdk-cpp
sudo cspell "src/**/*.txt" "*.txt" "src/aws-cpp-sdk-core/**/*.h" "src/aws-cpp-sdk-core/**/*.cpp"
if [ $? -ne 0 ]; then sudo cspell "src/**/*.txt" "*.txt" "src/aws-cpp-sdk-core/**/*.h" "src/aws-cpp-sdk-core/**/*.cpp"; exit 1; fi;