add auth to all calls except login/logout (#409) #5
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 and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| name: Build, Test, and Analyze | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - name: Set up JDK 17 | |
| uses: actions/[email protected] | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| - name: Cache SonarCloud packages | |
| uses: actions/[email protected] | |
| with: | |
| path: ~/.sonar/cache | |
| key: ${{ runner.os }}-sonar | |
| restore-keys: ${{ runner.os }}-sonar | |
| - name: Setup Gradle | |
| uses: gradle/[email protected] | |
| with: | |
| dependency-graph: generate-and-submit | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Integration Tests CWMS | |
| if: always() | |
| run: ./gradlew integrationTestCWMS --stacktrace --info | |
| - name: Integration Tests OpenTSDB | |
| if: always() | |
| run: ./gradlew integrationTestOpenTSDB --stacktrace --info | |
| - name: Upload WAR files | |
| uses: actions/[email protected] | |
| with: | |
| name: warfile | |
| path: ./**/build/libs/*.war | |
| retention-days: 1 | |
| if-no-files-found: error | |
| - name: Upload Test Reports | |
| uses: actions/[email protected] | |
| with: | |
| name: test-report | |
| path: ./**/build/reports/tests/** | |
| if-no-files-found: error | |
| - name: Upload Coverage Reports | |
| uses: actions/[email protected] | |
| with: | |
| name: coverage-report | |
| path: ./**/build/reports/jacoco/ | |
| if-no-files-found: error |