chore: configuracao do vercel.json para producao #19
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
backend: | |
name: backend - Build e Teste | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codigo | |
uses: actions/checkout@v4 | |
- name: Dar permissao ao mvnw | |
run: chmod +x mvnw | |
- name: Configurar Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Build e Teste(Maven) | |
run: ./mvnw clean verify |