Working on tests #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |