diff options
author | Andy Clement <aclement@pivotal.io> | 2020-08-14 13:59:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 13:59:47 -0700 |
commit | dbbbac8dbd25a19c56568623b823eba4e6e2906a (patch) | |
tree | df2853082067298bb43fae04ce5288d85328eb41 /.github | |
parent | b0b2f50a27499227580852496964e037e9204f22 (diff) | |
parent | 6a9b1b729373d774423f45d179cb01b40812898d (diff) | |
download | aspectj-dbbbac8dbd25a19c56568623b823eba4e6e2906a.tar.gz aspectj-dbbbac8dbd25a19c56568623b823eba4e6e2906a.zip |
Merge pull request #4 from larsgrefer/feature/github-actions
Fix and improve the CI Jobs
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/maven.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 9aae7dbf9..ab26f1db3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,13 +14,16 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - java: [ 1.8, 11 ] + java: [ 8, 9, 10, 11, 12, 13, 14 ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} + - run: java -version + - run: mvn --version - name: Build with Maven run: mvn -Dorg.aspectj.tools.ajc.Ajc.verbose=false -B package --file pom.xml |