Skip to content

Commit

Permalink
Creating GitHub Actions config for Matrix Build on Java 8-15. Also re…
Browse files Browse the repository at this point in the history
…moving Travis config.
  • Loading branch information
jonashackt committed Jan 7, 2021
1 parent 3cd7829 commit 7bf59c9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: github

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
java-version: [ 8, 9, 10, 11, 15 ]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- run: mvn -B install --no-transfer-progress --file pom.xml

16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Enterprise & production ready SOAP webservices powered by Spring Boot & Apache CXF
======================================================================================
[![Build Status](https://travis-ci.com/codecentric/cxf-spring-boot-starter.svg?branch=master)](https://travis-ci.com/codecentric/cxf-spring-boot-starter)
[![Build Status](https://github.com/codecentric/cxf-spring-boot-starter/workflows/github/badge.svg)](https://github.com/codecentric/cxf-spring-boot-starter/actions)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.codecentric/cxf-spring-boot-starter/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.codecentric/cxf-spring-boot-starter/)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
[![renovateenabled](https://img.shields.io/badge/renovate-enabled-yellow)](https://renovatebot.com)
Expand Down

0 comments on commit 7bf59c9

Please sign in to comment.