diff options
author | nea <nea@nea.moe> | 2023-08-15 20:33:58 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-15 20:46:14 +0200 |
commit | de694f30b5e2f6fd62a00e5a622abe0a2411afb9 (patch) | |
tree | e442f960c57000a2f6b763d3dcb7d945593cbb9d /.github/workflows/gradle-wrapper-validation.yml | |
parent | 54b0f2ea841d2ce3895713415481271aa3034b30 (diff) | |
download | nealisp-de694f30b5e2f6fd62a00e5a622abe0a2411afb9.tar.gz nealisp-de694f30b5e2f6fd62a00e5a622abe0a2411afb9.tar.bz2 nealisp-de694f30b5e2f6fd62a00e5a622abe0a2411afb9.zip |
Add github actions testing
Diffstat (limited to '.github/workflows/gradle-wrapper-validation.yml')
-rw-r--r-- | .github/workflows/gradle-wrapper-validation.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml new file mode 100644 index 0000000..f37f3e2 --- /dev/null +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -0,0 +1,12 @@ +name: "Validate Gradle Wrapper" +on: [push, pull_request] + +jobs: + validation: + name: "Validation" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + name: Checkout repository + - uses: gradle/wrapper-validation-action@v1 + name: Validate wrappers
\ No newline at end of file |