IAM-6438 Added dependency convergence scan #174
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: Run AAA SDK CI | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@v4.2.2 | |
| - name: Cache local Maven repository | |
| uses: actions/cache@v4.2.3 | |
| with: | |
| path: $HOME/.m2 | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Setup Java | |
| uses: actions/setup-java@v4.7.1 | |
| with: | |
| java-version: '8' | |
| distribution: 'zulu' | |
| - name: Verify Maven installation | |
| run: mvn -v | |
| - name: Run AAA SDK tests | |
| run: mvn -Dhere.token.endpoint.url=https://stg.account.api.here.com/oauth2/token -Dhere.access.key.id=${{ secrets.ACCESS_KEY_ID }} -Dhere.access.key.secret=${{ secrets.ACCESS_KEY_SECRET }} clean install |