[SNOW-TBD] AWS SDK v2 migration Step 1: Add v2 deps + migrate IcebergS3Client #3585
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: GoogleJavaFormat | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - '.claude/**' | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '.claude/**' | |
| jobs: | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'adopt' | |
| java-version: '11' | |
| - name: Format code | |
| run: ./format.sh | |
| - if: ${{ failure() }} | |
| run: git diff --color=always |