Skip to content

Commit 09d4ca4

Browse files
authored
Merge pull request #34 from Kotlin/add-github-action
Add GitHub Actions workflow for pull request builds
2 parents 19527ad + 81bebfa commit 09d4ca4

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)