Add note that current_user_ values are updated on user login only #1022 #15
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: Test project | |
| on: | |
| push: | |
| branches: | |
| - release_2_6 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Make wrapper executable | |
| run: chmod +x ./gradlew | |
| - name: Run tests | |
| run: > | |
| ./gradlew compileAll testAll | |
| -PpremiumRepoUser="${{ secrets.PREMIUM_REPO_USER }}" | |
| -PpremiumRepoPass="${{ secrets.PREMIUM_REPO_PASS }}" | |
| -Dorg.gradle.jvmargs=-Xmx2G | |
| - name: Publish test report | |
| uses: mikepenz/action-junit-report@v2 | |
| if: failure() | |
| with: | |
| report_paths: '**/build/test-results/test/TEST-*.xml' |