Skip to content

Commit 650dc49

Browse files
committed
Github actions CI
1 parent 3157c71 commit 650dc49

5 files changed

Lines changed: 34 additions & 13 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+
Build and test:
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Include via maven
2323
<dependency>
2424
<groupId>org.xyro</groupId>
2525
<artifactId>kumulus</artifactId>
26-
<version>0.1.41</version>
26+
<version>0.1.42</version>
2727
</dependency>
2828
```
2929

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>org.xyro</groupId>
99
<artifactId>kumulus</artifactId>
10-
<version>0.1.41</version>
10+
<version>0.1.42</version>
1111

1212
<name>kumulus</name>
1313
<description>A lightweight, in-process, drop-in replacement for Apache Storm</description>
@@ -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)