Add streaming support for large TIFF files (>2GB) #38
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: Build & Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| - name: Build & Test | |
| run: mvn clean package | |
| - name: Copy Release Artifacts | |
| run: | | |
| mkdir target/release | |
| cp pom.xml target/*.jar target/release/ | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v1 | |
| with: | |
| name: tiff | |
| path: target/release |