This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/.github/workflows/cspell.yml

22 lines
524 B
YAML

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 "aws-cpp-sdk-core/**/*.h" "aws-cpp-sdk-core/**/*.cpp")
if [ -n "$CSPELL_OUTPUT" ]; then echo "$CSPELL_OUTPUT" && exit 1; fi;