Fix S3 multipart copy requiring s3:GetObjectVersion on versioned buck… #9748
This file contains hidden or 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] | |
| 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; |