Skip to content

Commit ceca74b

Browse files
committedDec 22, 2020
Enable GitHub actions
1 parent e3615c5 commit ceca74b

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
 

‎.github/workflows/maven.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: github
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
10+
- uses: actions/checkout@v2
11+
12+
- name: Set up JDK 15
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 15
16+
17+
- name: Build with Maven
18+
run: mvn -B install --no-transfer-progress --file pom.xml

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Multiple Spring Boot servers that are secured with different client certificates - called by RestTemplate
22
=============================
3+
[![Build Status](https://github.com/jonashackt/spring-boot-rest-clientcertificates-docker-compose/workflows/github/badge.svg)](https://github.com/jonashackt/spring-boot-rest-clientcertificates-docker-compose/actions)
34
[![Build Status](https://travis-ci.com/jonashackt/spring-boot-rest-clientcertificates-docker-compose.svg?branch=master)](https://travis-ci.com/jonashackt/spring-boot-rest-clientcertificates-docker-compose)
45
[![renovateenabled](https://img.shields.io/badge/renovate-enabled-yellow)](https://renovatebot.com)
56

0 commit comments

Comments
 (0)
Please sign in to comment.