doc: add java options
This commit is contained in:
parent
9602b84247
commit
75eb281b01
1 changed files with 24 additions and 0 deletions
|
|
@ -63,6 +63,30 @@ jobs:
|
|||
command: cargo test --all
|
||||
```
|
||||
|
||||
### Java (Gradle)
|
||||
|
||||
```yaml
|
||||
- uses: https://bitfreedom.net/code/apunkt/actions/run-tests@v1
|
||||
with:
|
||||
setup: ./gradlew --version
|
||||
command: ./gradlew test
|
||||
artifacts-path: |
|
||||
**/build/reports/tests/**
|
||||
**/build/test-results/**/*.xml
|
||||
```
|
||||
|
||||
### Java (Maven)
|
||||
|
||||
```yaml
|
||||
- uses: https://bitfreedom.net/code/apunkt/actions/run-tests@v1
|
||||
with:
|
||||
setup: mvn --version
|
||||
command: mvn -B test
|
||||
artifacts-path: |
|
||||
**/target/surefire-reports/**
|
||||
**/target/failsafe-reports/**
|
||||
```
|
||||
|
||||
### Multi-line command
|
||||
|
||||
```yaml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue