[ADDED] Product flavour to have debug vs prod build #125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Validate Gradle Wrapper" | |
# The wrapper-validation action validates the checksums of all Gradle Wrapper JAR files | |
# present in the repository and fails if any unknown Gradle Wrapper JAR files are found. | |
# Source: https://github.com/gradle/actions?tab=readme-ov-file#the-wrapper-validation-action | |
on: | |
pull_request: | |
jobs: | |
gradle-validation: | |
name: "Validate" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/actions/wrapper-validation@v4 |