chore: add support for SESv2 Sigv4a (not yet used because SESv2 hasn't rolled out support) #5689
Workflow file for this run
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| - '!main' | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| env: | |
| PACKAGE_NAME: aws-sdk-kotlin | |
| jobs: | |
| ktlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Lint ${{ env.PACKAGE_NAME }} | |
| run: | | |
| ./gradlew ktlint |