Skip to content

Commit

Permalink
Merge pull request #6 from stemdo-labs/eperez
Browse files Browse the repository at this point in the history
Eperez
  • Loading branch information
EperezStemdo authored Apr 30, 2024
2 parents f93ae29 + 56718b5 commit 16021a5
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ejercicio2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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"

0 comments on commit 16021a5

Please sign in to comment.