Skip to content

Commit bd071ca

Browse files
committed
Migrate CI to GHA
1 parent 6fbeb32 commit bd071ca

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

.github/workflows/ci.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Java CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v3
17+
with:
18+
java-version: '17'
19+
distribution: 'zulu'
20+
- name: Build with Maven
21+
run: mvn --batch-mode package

.travis.yml

-5
This file was deleted.

0 commit comments

Comments
 (0)