Skip to content

Workflow file for this run

name: Check Develop
on:
pull_request:
branches:
- *

Check failure on line 5 in .github/workflows/check-develop.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/check-develop.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
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