Skip to content
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

Bump commons-io:commons-io in /code-generation/generator

Bump commons-io:commons-io in /code-generation/generator #6

Workflow file for this run

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;