Skip to content

Commit

Permalink
Matrix build with JDK 8 and 11
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgleissner committed Sep 1, 2023
1 parent 742f1df commit 0640ce6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -4,6 +4,9 @@ on: [push]

jobs:
build:
strategy:
matrix:
jdk-version: [8, 11]

runs-on: ubuntu-latest

Expand All @@ -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'

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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 <a href="https://spring.io/projects/spring-batch">Spring Batch</a> based on <a href="https://github.com/spring-projects/spring-boot">Spring Boot 2.2</a> and <a href="https://github.com/spring-projects/spring-hateoas">Spring HATOEAS</a>. It comes with an OpenAPI 3 documentation provided by <a href="https://github.com/springdoc/springdoc-openapi">Springdoc</a>.

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
Expand Down

0 comments on commit 0640ce6

Please sign in to comment.