Skip to content

Working on tests

Working on tests #1

Workflow file for this run

# cat .github/workflows/deploy.yml
name: Check Development PRs
on:
# Todo: Remove the push events before merging to develop
push:
branches: [cicd/develop]
pull_request:
branches: [develop]
jobs:
# Pull in the external workflows so we avoid duplication
check_documentation:
uses: ./.github/workflows/check_documentation.yml
check_formatting:
uses: ./.github/workflows/check_formatting.yml
check_compilation:
uses: ./.github/workflows/check_compilation.yml
# Dummy job to trigger the other jobs
check-develop:
name: Run all checks for development PRs
needs:
- check_documentation
- check_formatting
- check_compilation
runs-on: ubuntu-latest
steps:
- name: Success
run: echo "All checks passed"