Skip to content

moved logic components into shared #8

moved logic components into shared

moved logic components into shared #8

Workflow file for this run

name: Check Develop
on:
push:
branches:
- develop
jobs:
gradle_validation:
name: Validate gradle wrapper
uses: ./.github/workflows/gradle-wrapper-validation.yml
detekt_validation:
name: Check by detekt
needs: gradle_validation
uses: ./.github/workflows/detekt-validation.yml
tests_validation:
needs: gradle_validation
uses: ./.github/workflows/tests-validation.yml
build:
name: Build project
needs: [ gradle_validation, detekt_validation ]
uses: ./.github/workflows/build-project.yml