Skip to content

Commit

Permalink
merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
aormsby committed Aug 4, 2024
2 parents 06da22c + 2a3ad87 commit 70c6a68
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Required PR Tests
on:
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
run-pr-tests:
runs-on: ubuntu-latest
steps:

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 7.5

# Download/cache JDK
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
cache: 'gradle'

- name: Check out plugin repo
uses: actions/checkout@v4

- name: Build and run tests
run: ./gradlew build
2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 70c6a68

Please sign in to comment.