Skip to content

FIX remove Java<11 from GitActions test #173

FIX remove Java<11 from GitActions test

FIX remove Java<11 from GitActions test #173

Workflow file for this run

name: CI
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-dockerfile:
name: Lint Dockerfile
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Run Hadolint Dockerfile Linter
uses: burdzwastaken/hadolint-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HADOLINT_ACTION_DOCKERFILE_FOLDER: .
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
java-version:
- 11
- 12
- 13
- 14
- 15
- 16
- 17
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: 'Use Java ${{ matrix.java-version }}'
uses: actions/setup-java@v1
with:
java-version: '${{ matrix.java-version }}'
- name: 'Unit Tests with Java ${{ matrix.java-version }}'
run: |
mvn clean test -B