-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/antlr #113
Feature/antlr #113
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
name: Run Gradle on PRs | ||
permissions: read-all | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
gradle: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Run test and Coverage | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-version: wrapper | ||
arguments: reportScoverage aggregateAllTestReports -no-daemon | ||
gradle: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: "temurin" | ||
java-version: "17" | ||
- name: Run test and Coverage | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-version: wrapper | ||
arguments: reportScoverage aggregateAllTestReports -no-daemon |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: Create issues from todos | ||
permissions: read-all | ||
|
||
on: | ||
push: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
id: 2sgmr3sq | ||
title: Monster Manuals | ||
file_version: 1.1.3 | ||
app_version: 1.17.0 | ||
--- | ||
|
||
Basic Monster Type information will be located in the io.truthencode.ddo.model.compendium package. | ||
|
||
Ultimately, Entry, Type, Race and Sub-races should be applied. Although Monster Manual may not directly affect combat stats. | ||
Check warning Code scanning / Markdownlint (reported by Codacy) Expected: 80; Actual: 124
Expected: 80; Actual: 124
|
||
|
||
<br/> | ||
Check warning Code scanning / Markdownlint (reported by Codacy) Element: br
Element: br
|
||
|
||
| Monster Manual Entry | Type | Race | Sub-races | | ||
| -------------------- | ------------- | ----------- | --------- | | ||
| Elf | Elf | Elf | Drow Elf | | ||
| Purple Worm | Magical Beast | Purple Worm | <br/> | | ||
Check warning Code scanning / Markdownlint (reported by Codacy) Element: br
Element: br
|
||
| <br/> | <br/> | <br/> | <br/> | | ||
Check warning Code scanning / Markdownlint (reported by Codacy) Element: br
Element: br
|
||
|
||
<br/> | ||
Check warning Code scanning / Markdownlint (reported by Codacy) Element: br
Element: br
|
||
|
||
This file was generated by Swimm. [Click here to view it in the app](https://app.swimm.io/repos/Z2l0aHViJTNBJTNBZGRvLWNhbGMlM0ElM0F0cnV0aGVuY29kZQ==/docs/2sgmr3sq). |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
plugins { | ||
jacoco | ||
} | ||
/* | ||
|
||
Java's (jacoco) and Kotlin at this time. | ||
Scala will utilize scoverage instead. | ||
(Scala's coverage is available in scala-conventions. | ||
NOTICE: You must still include a kotlin app / library etc. profile as we do not auto-include kotlin / java library conventions here. | ||
*/ | ||
|
||
jacoco { | ||
toolVersion = "0.8.10" | ||
// reportsDirectory.set(layout.buildDirectory.dir("customJacocoReportDir")) | ||
} | ||
|
||
tasks.withType(JacocoReport::class) { | ||
reports { | ||
xml.required.set(false) | ||
csv.required.set(false) | ||
// html.outputLocation.set(layout.buildDirectory.dir("jacocoHtml")) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
plugins { | ||
id("djaxonomy.java-coverage-conventions") | ||
} | ||
|
||
/* | ||
There is no kotlin specific coverage tool at this time. | ||
We're just using Java's (jacoco) | ||
Scala will utilize scoverage instead. | ||
|
||
NOTICE: You must still include a kotlin app / library etc. profile as we do not auto-include kotlin / java library conventions here. | ||
*/ |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 98