Skip to content

Commit 3f2cb06

Browse files
Move to GitHub Actions (#22)
* Create maven.yml * Delete config.yml * Update README.md * Update README.md
1 parent a9d9117 commit 3f2cb06

File tree

3 files changed

+25
-44
lines changed

3 files changed

+25
-44
lines changed

.circleci/config.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up JDK 8
18+
uses: actions/setup-java@v2
19+
with:
20+
java-version: '8'
21+
distribution: 'adopt'
22+
- name: Build with Maven
23+
run: mvn -B package --file pom.xml

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
TitleAPI
22
=====================
33

4-
[![CircleCI](https://circleci.com/gh/ConnorLinfoot/TitleAPI/tree/master.svg?style=svg)](https://api.connorlinfoot.com/v1/ci/artifact/TitleAPI/latest/download)
4+
[![Java CI with Maven](https://github.com/ConnorLinfoot/TitleAPI/actions/workflows/maven.yml/badge.svg)](https://github.com/ConnorLinfoot/TitleAPI/actions/workflows/maven.yml)
55
[![](https://jitpack.io/v/ConnorLinfoot/TitleAPI.svg)](https://jitpack.io/#ConnorLinfoot/TitleAPI)
66

77
## Maven
8+
89
This library can be found on [JitPack](https://jitpack.io/#ConnorLinfoot/TitleAPI) for easy integration into maven
910
projects.
1011
```xml

0 commit comments

Comments
 (0)