Skip to content

Commit

Permalink
add gradle's wrapper validation workflow (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 authored Jul 5, 2024
1 parent ce2dbbe commit adb0821
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/validate_gradle_wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Validates the integrity of the Gradle Wrapper
name: Validate Gradle Wrapper

on:
push:
branches:
- master
paths:
- 'gradle/**'
pull_request:
branches:
- '*'
paths:
- 'gradle/**'

concurrency:
group: gradle-wrapper-validation-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
Validation:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation

0 comments on commit adb0821

Please sign in to comment.