feat: add reusable CI workflow and update workflow-ci to use it #11
Workflow file for this run
This file contains hidden or 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: Workflow CI | |
| description: A workflow that calls reusable and composite workflows. | |
| permissions: | |
| contents: read | |
| on: [push] | |
| jobs: | |
| call-reusable-workflow: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Call CI Workflow | |
| uses: ./.github/workflows/utilities/reusable-workflow | |
| call-composite-workflow: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Call Greeting Workflow | |
| uses: ./.github/workflows/utilities/composite-workflow | |
| with: | |
| name: "Desarrollador" | |
| message: "Hola" |