Skip to content

fix: remove redundant checkout steps in CI workflows #3

fix: remove redundant checkout steps in CI workflows

fix: remove redundant checkout steps in CI workflows #3

Workflow file for this run

name: Workflow CI
description: A workflow that calls reusable and composite workflows.
on: [push]
jobs:
call-reusable-workflow:
runs-on: ubuntu-latest
steps:
- name: Call CI Workflow
uses: ./.github/workflows/utilities/reusable-workflow.yml@main
call-composite-workflow:
runs-on: ubuntu-latest
steps:
- name: Call Greeting Workflow
uses: ./.github/workflows/utilities/composite-workflow.yml
with:
name: "Desarrollador"
message: "Hola"