Skip to content

Commit 24f42e2

Browse files
committed
Switch to Github Actions for CI
1 parent 121e2b2 commit 24f42e2

File tree

2 files changed

+31
-10
lines changed

2 files changed

+31
-10
lines changed

.github/workflows/maven-build.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Maven build
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/[email protected]
16+
- name: Set up JDK
17+
uses: actions/[email protected]
18+
with:
19+
distribution: temurin
20+
java-version: 8
21+
cache: maven
22+
- name: Run Maven build
23+
uses: GabrielBB/[email protected]
24+
with:
25+
run: ./mvnw -B verify
26+
- name: Publish the test report
27+
uses: scacap/[email protected]
28+
if: always()
29+
with:
30+
check_name: tests
31+
github_token: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

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

0 commit comments

Comments
 (0)