Skip to content

Commit 918882f

Browse files
kinowtdunning
authored andcommitted
Remove Travis-CI, add GH Actions
1 parent 721f82c commit 918882f

File tree

2 files changed

+34
-13
lines changed

2 files changed

+34
-13
lines changed

.github/workflows/maven.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Java CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
build:
12+
runs-on: ${{ matrix.os }}
13+
continue-on-error: ${{ matrix.experimental }}
14+
strategy:
15+
matrix:
16+
os: [ ubuntu-latest, windows-latest ]
17+
java: [ 8, 11 ]
18+
experimental: [ false ]
19+
# include:
20+
# - java: 18-ea
21+
# os: ubuntu-latest
22+
# experimental: true
23+
24+
steps:
25+
- uses: actions/checkout@v3.3.0
26+
with:
27+
persist-credentials: false
28+
- name: Set up JDK ${{ matrix.java }}
29+
uses: actions/setup-java@v3.10.0
30+
with:
31+
distribution: 'temurin'
32+
java-version: ${{ matrix.java }}
33+
- name: Build with Maven
34+
run: mvn -V --no-transfer-progress clean test

.travis.yml

-13
This file was deleted.

0 commit comments

Comments
 (0)