Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Add Gradle wrapper validation action
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Apr 16, 2024
1 parent 4cc3a6e commit 70e5c7f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Validate Gradle Wrapper"

on:
push:
branches:
- main
pull_request:
branches:
- '*'

jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v3

0 comments on commit 70e5c7f

Please sign in to comment.