forked from aserg-ufmg/demo-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03598c0
commit 6dd8080
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Github CI | ||
on: | ||
# Configura servidor de CI para executar o pipeline de tarefas abaixo (jobs) quando | ||
# um push ou pull request for realizado tendo como alvo a branch main | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
pipeline: | ||
runs-on: ubuntu-latest # Os comandos serão executados em um sistema operacional Linux | ||
|
||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v2 # Faz o checkout do código recebido | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 # Configura o Java 1.8 | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: Build | ||
run: mvn package -Dmaven.test.skip=true # Compila o código fonte | ||
|
||
- name: Unit Test | ||
run: mvn test # Executada os testes de unidade |