projects
/
Mograsim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a924a24
)
Configure GitHub Actions for Mograsim
author
Christian Femers
<femers@in.tum.de>
Tue, 11 Feb 2020 01:15:32 +0000
(
02:15
+0100)
committer
GitHub
<noreply@github.com>
Tue, 11 Feb 2020 01:15:32 +0000
(
02:15
+0100)
.github/workflows/maven.yml
[new file with mode: 0644]
patch
|
blob
diff --git a/.github/workflows/maven.yml
b/.github/workflows/maven.yml
new file mode 100644
(file)
index 0000000..
0eee55b
--- /dev/null
+++ b/
.github/workflows/maven.yml
@@ -0,0
+1,17
@@
+name: Java CI
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 11
+ uses: actions/setup-java@v1
+ with:
+ java-version: 11
+ - name: Build with Maven
+ run: mvn --batch-mode --errors --fail-at-end --show-version clean verify --file pom.xml