mirror of
https://github.com/fankes/moshi.git
synced 2025-10-19 07:59:21 +08:00
* Update CI/build infra - Gradle caching on CI - JDK 21 - Move gradle wrapper validation to a separate workflow that only runs on changes to those files * Update .github/workflows/gradle-wrapper.yml Co-authored-by: Jake Wharton <jw@squareup.com> --------- Co-authored-by: Jake Wharton <jw@squareup.com>
15 lines
262 B
YAML
15 lines
262 B
YAML
name: gradle-wrapper
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'gradlew'
|
|
- 'gradlew.bat'
|
|
- 'gradle/wrapper/**'
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: gradle/actions/wrapper-validation@v3 |