Skip to content

Commit

Permalink
Adjusting GitHub Actions and code format
Browse files Browse the repository at this point in the history
  • Loading branch information
SuppieRK committed Apr 24, 2024
1 parent 8720636 commit b162d1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build
run: ./gradlew spotlessJavaCheck build

- name: Publish to Maven Central
run: ./gradlew publishAllPublicationsToMavenCentral --no-configuration-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Java CI with Gradle for Pull Requests

on:
workflow_dispatch: {}
pull_request:
push:
branches-ignore:
- master

Expand Down Expand Up @@ -35,4 +35,4 @@ jobs:
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build
run: ./gradlew spotlessJavaCheck build
11 changes: 5 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@ The following guides illustrate how to use some features concretely:

For further reference, please consider the following sections:

### Libraries declaration and updates

This library defines all artifact versions without Maven Bill of Materials because of:
### Build tools

* Ease of use with [IntelliJ IDEA Package Search](https://blog.jetbrains.com/idea/2021/06/intellij-idea-2021-2-eap-2/?_gl=1*17t2ibb*_ga*MjE4Mjk3MC4xNjI3NTg1MTk1*_ga_5779HKX92V*MTYyNzU4NTE5OC4xLjAuMTYyNzU4NTE5OC4w#package_search_integration%60}#package_search_integration) functionality
* Ease of use with [Dependabot](https://dependabot.com/)
The command typically used to build the project is:

### Build tools
```shell
./gradlew clean spotlessApply build
```

* [Official Gradle documentation](https://docs.gradle.org)

Expand Down

0 comments on commit b162d1b

Please sign in to comment.