Merge pull request #2 from renatohberg/02-GitHubActions #1
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
# Nome do Workflow | |
name: DevOpsLab Pipeline | |
# Evento que irá acionar a pipeline | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download do Repositório | |
uses: actions/checkout@v4 # https://github.com/actions/checkout |