File tree Expand file tree Collapse file tree 2 files changed +30
-15
lines changed Expand file tree Collapse file tree 2 files changed +30
-15
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v4
15+
16+ - uses : actions/setup-java@v2
17+ with :
18+ java-version : ' 17'
19+ distribution : ' adopt'
20+
21+ - name : Run the Maven verify phase
22+ run : mvn --batch-mode verify
Original file line number Diff line number Diff line change @@ -14,22 +14,15 @@ Further reading:
1414* [ About API implemented in this library] ( http://doc.kaitai.io/stream_api.html )
1515* [ Java-specific notes] ( http://doc.kaitai.io/lang_java.html )
1616
17- # Build
18- To build library run the following command:
17+ ## Build
18+ To build the library, run the following command:
1919
20- ``` console
20+ ``` sh
2121mvn install
2222```
2323
24- # Release
25- To make a release ensure that you have:
26-
27- - a [ gpg] ( https://gnupg.org/ ) installed
28- - a [ configured] ( https://maven.apache.org/plugins/maven-gpg-plugin/usage.html ) gpg signing key
29- - pass ` -DperformRelease=true ` argument to the maven command invocation:
30-
31- ``` console
32- mvn -DperformRelease=true deploy
33- ```
34-
35- See also http://doc.kaitai.io/developers.html#java .
24+ ## Release
25+ <sub >
26+ If you are maintainer of this project please visit http://doc.kaitai.io/developers.html#java
27+ to get instructions how to make a release.
28+ </sub >
You can’t perform that action at this time.
0 commit comments