Skip to content

Commit

Permalink
Add some github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumandora committed Feb 25, 2024
1 parent a99469e commit 0f7612a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: "Validate Gradle Wrapper"
on: [push, pull_request]

jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
21 changes: 21 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Java CI with Gradle

on: [ "push", "pull_request" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/setup-java@v3
name: Set up JDK 17
with:
java-version: '17'
distribution: 'temurin'

- uses: actions/checkout@v3
with:
submodules: recursive

- name: Build the project
run: ./gradlew buildPlugin

0 comments on commit 0f7612a

Please sign in to comment.