Skip to content

Commit e9817c1

Browse files
authored
build(validation): add abi validation for new pull requests
1 parent 6a6bde1 commit e9817c1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: PR Validation
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
validate:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Grant execute permission to gradlew
15+
run: chmod +x ./gradlew
16+
17+
- name: Set up JDK
18+
uses: actions/setup-java@v4
19+
with:
20+
distribution: zulu
21+
java-version: 21
22+
cache: 'gradle'
23+
24+
- name: ABI Validation
25+
run: ./gradlew checkLegacyAbi -Pfull-build=true --no-configuration-cache

0 commit comments

Comments
 (0)