Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 532d77f

Browse files
committed
FF-34 added tests pipeline
1 parent ffd9f76 commit 532d77f

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

.github/workflows/tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Tests
2+
3+
on: [push,workflow_dispatch]
4+
5+
jobs:
6+
run-all-tests:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up JDK
12+
uses: actions/setup-java@v1
13+
with:
14+
java-version: '11.0.8'
15+
architecture: x64
16+
- name: Run tests with maven.
17+
run: mvn -B test --file pom.xml

src/main/java/de/filefighter/rest/RestApplication.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55

66
@SpringBootApplication
77
public class RestApplication {
8-
98
public static void main(String[] args) {
109
SpringApplication.run(RestApplication.class, args);
1110
}
12-
1311
}

src/main/resources/docker-compose.yml

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

0 commit comments

Comments
 (0)