Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Java CI with Maven

on:
push:
branches: [ "feature/workflow" ]
pull_request:
branches: [ "develop" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout código
uses: actions/checkout@v4

- name: Configurar JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- name: Execute maven test
run: mvn test
continue-on-error: true

- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
with:
name: relatorio-testes
path: target/surefire-reports/
Empty file added .github/workflows/trigger.txt
Empty file.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ build/
*.iml
.project
.classpath
.settings/
.settings/

# MCP
14 changes: 14 additions & 0 deletions .roo/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"mcpServers": {
"github-lite": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": ""
}
}
}
}
Loading