feat: add support for setting S3 storage class on initial object write #1596
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: Cloud Storage Unit tests | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - "release/v[0-9]+.[0-9]+" | |
| push: | |
| branches: | |
| - master | |
| - "release/v[0-9]+.[0-9]+" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Code check | |
| run: mvn license:check checkstyle:check spotbugs:check | |
| - name: Build with Maven | |
| run: mvn install test -DfailIfNoTests=false | |
| - name: package surefire artifacts | |
| if: failure() | |
| run: | | |
| rm -rf artifacts | |
| mkdir artifacts | |
| find . -type d -name "*surefire*" -exec cp --parents -R {} artifacts/ \; | |
| zip -r artifacts.zip artifacts | |
| - uses: actions/upload-artifact@master | |
| name: upload surefire-artifacts | |
| if: failure() | |
| with: | |
| name: surefire-artifacts | |
| path: artifacts.zip |