Skip to content

Updated

Updated #100

Workflow file for this run

include:

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Run AAA SDK CI

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 1, Col: 1): Unexpected value 'include'
- local: '.github/dependabot.yml'
name: Run AAA SDK CI
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: $HOME/.m2
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: '8'
- 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
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4