Skip to content

#1049 Migrate developer documentation to main repository #3

#1049 Migrate developer documentation to main repository

#1049 Migrate developer documentation to main repository #3

name: Pull request CI
on: [pull_request]
jobs:
prebuild_check_codestyle:
name: Pre-build checks
uses: ./.github/workflows/check.codestyle.yml
prebuild_check_license:
name: Check code style
uses: ./.github/workflows/check.license.yml
prebuild_check_dependency:
name: OWASP Dependency Check
uses: ./.github/workflows/check.dependency.yml
build:
name: Build modules
needs: [check_codestyle, check_license, check_dependency]

Check failure on line 16 in .github/workflows/workflow.pull_request.yml

View workflow run for this annotation

GitHub Actions / Pull request CI

Invalid workflow file

The workflow is not valid. .github/workflows/workflow.pull_request.yml (Line: 16, Col: 13): Job 'build' depends on unknown job 'check_codestyle'. .github/workflows/workflow.pull_request.yml (Line: 16, Col: 30): Job 'build' depends on unknown job 'check_license'.
uses: ./.github/workflows/build.modules.yml
postbuild_test:
needs: build
name: Tests
uses: ./.github/workflows/test.coverage.yml
postbuild_documentation:
needs: test
name: Build documentation
uses: ./.github/workflows/build.docs.yml