-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactor CI * Refactor CI * Refactor CI
- Loading branch information
1 parent
977e0e0
commit 69772f2
Showing
2 changed files
with
39 additions
and
39 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,39 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
|
||
name: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 21 | ||
distribution: temurin | ||
|
||
- name: Build my-gradle-plugins | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
build-root-directory: my-gradle-plugins | ||
arguments: build | ||
|
||
- name: Run my-gradle-project | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
build-root-directory: my-gradle-project | ||
arguments: my-settings-task my-project-task |
This file was deleted.
Oops, something went wrong.