-
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.
* update to new parent pom and structure * update readme * add code owners
- Loading branch information
Showing
17 changed files
with
247 additions
and
980 deletions.
There are no files selected for viewing
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,14 @@ | ||
#!/bin/sh | ||
|
||
echo "Running pre-commit hook: formatting files" | ||
|
||
FILES=$(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g') | ||
[ -z "$FILES" ] && exit 0 | ||
|
||
# Apply formatting to all files | ||
make format | ||
|
||
# Add back the formatted files to staging | ||
echo "$FILES" | xargs git add | ||
|
||
exit 0 |
Validating CODEOWNERS rules …
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 @@ | ||
* @pcalouche |
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,19 @@ | ||
version: 2 | ||
registries: | ||
github: | ||
type: "maven-repository" | ||
url: "https://maven.pkg.github.com/pcalouche/*" | ||
username: ${{ secrets.MAVEN_SERVER_USERNAME }} | ||
password: ${{ secrets.MAVEN_SERVER_PASSWORD }} | ||
updates: | ||
- package-ecosystem: "maven" | ||
directory: "/" # Location of package manifests | ||
registries: "*" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "main" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "main" |
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,30 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
push: | ||
env: | ||
MAVEN_SERVER_USERNAME: ${{ secrets.MAVEN_SERVER_USERNAME }} | ||
MAVEN_SERVER_PASSWORD: ${{ secrets.MAVEN_SERVER_PASSWORD }} | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
maven-verify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
show-progress: false | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: maven | ||
server-id: github | ||
server-username: MAVEN_SERVER_USERNAME | ||
server-password: MAVEN_SERVER_PASSWORD | ||
- name: Verify build | ||
run: mvn -B verify |
Oops, something went wrong.