-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Saving checkstyle changes * Checkstyle changes * Adding checkstyle reporting * Adding checkstyle reporting * Adding checkstyle reporting * Adding checkstyle reporting * Adding checkstyle reporting * Adding checkstyle reporting * Adding checkstyle reporting * Testing failed checkstyle * Updating Readme * Fixing Admin API
- Loading branch information
Showing
66 changed files
with
1,479 additions
and
427 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish Report | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
publish_report: | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '21' | ||
distribution: 'adopt' | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m2 | ||
|
||
- name: Build and generate report | ||
run: | | ||
mvn -B site | ||
- name: Push Checkstyle results | ||
uses: jwgmeligmeyling/checkstyle-github-action@master | ||
with: | ||
path: '**/checkstyle-result.xml' | ||
|
||
- name: Publish report | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Upload Report | ||
path: target/site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | ||
<suppressions> | ||
<suppress checks=".*" files=".*Response.java"/> | ||
<suppress checks=".*" files=".*Request.java"/> | ||
<suppress checks=".*" files=".*Entity.java"/> | ||
<suppress checks=".*" files="WeaviateEmbeddingStoreCustom.java"/> | ||
<suppress checks=".*" files="target/*"/> | ||
</suppressions> |
Oops, something went wrong.