Skip to content

Commit f15a148

Browse files
committed
Github actions CI
1 parent 3157c71 commit f15a148

4 files changed

Lines changed: 32 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Kumulus CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
buildAndTest:
11+
runs-on: ubuntu-latest
12+
13+
env:
14+
TEST_ITERATIONS: 100
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Set up JDK 21
21+
uses: actions/setup-java@v4
22+
with:
23+
java-version: '21'
24+
distribution: 'temurin'
25+
26+
- name: Test
27+
run: mvn test

.travis.yml

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

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.FORCE:
2+
3+
deploy: .FORCE
4+
@mvn -DskipTests clean package dokka:javadocJar deploy

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
<plugin>
190190
<groupId>org.jetbrains.dokka</groupId>
191191
<artifactId>dokka-maven-plugin</artifactId>
192-
<version>1.4.10.2</version>
192+
<version>2.0.0</version>
193193
<executions>
194194
<execution>
195195
<phase>pre-site</phase>

0 commit comments

Comments
 (0)