Skip to content

Commit 81bebfa

Browse files
committed
Add GitHub Actions workflow for pull request builds
1 parent 19527ad commit 81bebfa

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/master.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: On open pull request
2+
on: [pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- name: Setup JDK 21
12+
uses: actions/setup-java@v4
13+
with:
14+
java-version: 21
15+
distribution: jetbrains
16+
17+
- name: Run gradle build
18+
run: ./gradlew build

0 commit comments

Comments
 (0)