Update ejercicio4.yml #97
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
name: Simular CI/CD build, test y push | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: # El nombre del job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Compile #nombre del step | |
run: | | |
echo "Haciendo Build" | |
test: # El nombre del job | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Testing | |
run: | | |
echo "Haciendo testing" | |
push: # El nombre del job | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Deployment | |
run: | | |
echo "Haciendo push" | |