build(deps): bump the versions group across 1 directory with 31 updates #13
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: Check Develop | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
- 'master' | |
# Concurrency strategy: | |
# github.workflow: distinguish this workflow from others | |
# github.event_name: distinguish `push` event from `pull_request` event | |
# github.ref_name: distinguish branch | |
# github.repository: distinguish owner+repository | |
# | |
# Reference: | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency | |
# https://docs.github.com/en/actions/learn-github-actions/contexts#github-context | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{github.ref_name}}-${{github.repository}} | |
cancel-in-progress: true | |
jobs: | |
gradle_validation: | |
name: Validate gradle wrapper | |
uses: ./.github/workflows/call-gradle-wrapper-validation.yml | |
detekt_validation: | |
name: Check by detekt | |
needs: gradle_validation | |
uses: ./.github/workflows/call-detekt-validation.yml | |
tests_validation: | |
needs: gradle_validation | |
uses: ./.github/workflows/call-tests-validation.yml | |
build: | |
name: Build project | |
needs: [ gradle_validation, detekt_validation, tests_validation ] | |
uses: ./.github/workflows/call-build-project.yml |