Skip to content

#1049 Migrate developer documentation to main repository #4

#1049 Migrate developer documentation to main repository

#1049 Migrate developer documentation to main repository #4

name: Pull request CI
on: [pull_request]
jobs:
prebuild_check_codestyle:
name: Pre-build checks
uses: ./.github/workflows/check.codestyle.yml
with:
workflow_call: true

Check failure on line 9 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: 9, Col: 22): Invalid input, workflow_call is not defined in the referenced workflow.
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:
- prebuild_check_codestyle
- prebuild_check_license
- prebuild_check_dependency
uses: ./.github/workflows/build.modules.yml
postbuild_test:
name: Tests
needs:
- build
uses: ./.github/workflows/test.coverage.yml
postbuild_documentation:
name: Build documentation
needs:
- postbuild_test
uses: ./.github/workflows/build.docs.yml