-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add .editorconfig for code formatting * add idea plugin for easy project open * try some new formatting * reformat * add checkstyle config from upstream * remove useless test * enable tests in CI * reformat code * keep long lines as we are used to * reformat + same defaults as otel * now check with verify * s/verify/check/
- Loading branch information
1 parent
05a76d8
commit fa913fc
Showing
10 changed files
with
1,405 additions
and
200 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: gradle/[email protected] | ||
|
||
assemble: | ||
gradle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
|
@@ -29,14 +29,14 @@ jobs: | |
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Gradle assemble | ||
- name: Gradle build, test and check | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: assemble | ||
arguments: check | ||
|
||
- name: Agent artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: elastic-otel-javaagent | ||
path: | | ||
./agent/build/libs/elastic-otel-javaagent-*.jar | ||
./agent/build/libs/elastic-otel-javaagent-*.jar |
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
Oops, something went wrong.