diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45e6a75..76c85f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,9 @@ on: [push] jobs: build: + strategy: + matrix: + jdk-version: [8, 11] runs-on: ubuntu-latest @@ -14,7 +17,7 @@ jobs: - name: JDK Setup uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '${{ matrix.jdk-version }}' distribution: 'adopt' cache: 'maven' diff --git a/README.md b/README.md index b266089..71dae4b 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,13 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.github.chrisgleissner/spring-batch-rest-api)](https://search.maven.org/artifact/com.github.chrisgleissner/spring-batch-rest-api/) [![Javadocs](https://www.javadoc.io/badge/com.github.chrisgleissner/spring-batch-rest-api.svg)](https://www.javadoc.io/doc/com.github.chrisgleissner/spring-batch-rest-api) -[![Build Status](https://travis-ci.org/chrisgleissner/spring-batch-rest.svg?branch=master)](https://travis-ci.org/chrisgleissner/spring-batch-rest) +![Build Status](https://github.com/chrisgleissner/spring-batch-rest/actions/workflows/build.yml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/chrisgleissner/spring-batch-rest/badge.svg?branch=master)](https://coveralls.io/github/chrisgleissner/spring-batch-rest?branch=master) [![Maintainability](https://api.codeclimate.com/v1/badges/2267ddd7cbbfc5e22b86/maintainability)](https://codeclimate.com/github/chrisgleissner/spring-batch-rest/maintainability) REST API for Spring Batch based on Spring Boot 2.2 and Spring HATOEAS. It comes with an OpenAPI 3 documentation provided by Springdoc. -Supports Java 8 and above. Tested on OpenJDK 8, 11, and 14. +Supports Java 8 and above. Tested on OpenJDK 8 and 11. ## Features - Get information on jobs, job executions, and Quartz schedules