GitHub setup

This commit is contained in:
Geert Bevin 2023-04-04 09:25:28 -04:00
parent cc55c2f6bb
commit 0f5527f46e
3 changed files with 7 additions and 3 deletions

View file

@ -1,4 +1,4 @@
name: badge-ci
name: bld-ci
on: [push, pull_request, workflow_dispatch]

View file

@ -38,7 +38,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 19
java-version: 17
- name: Build Javadocs
run: ./bld download clean javadoc

View file

@ -7,6 +7,8 @@
An extension for generating Java sources from ANTLR4 parsers.
This is an example usage:
```java
private final Antlr4Operation antlr4Operation_ = new Antlr4Operation();
@BuildCommand
@ -27,4 +29,6 @@ throws Exception {
.fromProject(this)
.mainSourceDirectories(List.of(antlr4Operation_.outputDirectory())));
}
```
```
The complete document of `Antrl4Operation` can be found in its [javadocs](https://rife2.github.io/bld-antlr4/rife/bld/extension/Antlr4Operation.html).