Test Commit #27
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
name: Build Job | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Test Application | |
run: echo "Testing the application" | |
call_final_job: | |
needs: test # Ensures this job runs after the 'test' job | |
if: always() | |
uses: ./.github/workflows/dump_ci_stats.yml # Calls the reusable workflow | |
with: | |
workflow_name: "Build Job" | |
secrets: inherit |