feat: Enforce exact byte reading from Content-Length
header for BoxFile
representation
#622
Workflow file for this run
This file contains 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: Integration tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
core: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Run Tests | |
env: | |
JAVA_COLLABORATOR_ID: ${{ secrets.JAVA_COLLABORATOR_ID }} | |
JAVA_COLLABORATOR: ${{ secrets.JAVA_COLLABORATOR }} | |
JAVA_ENTERPRISE_ID: ${{ secrets.JAVA_ENTERPRISE_ID }} | |
JAVA_JWT_CONFIG: ${{ secrets.JAVA_JWT_CONFIG }} | |
JAVA_USER_ID: ${{ secrets.JAVA_USER_ID }} | |
run: ./gradlew integrationTest |