-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
29 lines (26 loc) · 871 Bytes
/
.gitpod.yml
File metadata and controls
29 lines (26 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
image: gitpod/workspace-java-21:2025-09-22-12-51-14
github:
prebuilds:
# Enable for the default branch
main: true
# Enable for all branches
branches: true
# Enable for pull requests coming from this repo
pullRequests: true
# Enable for pull requests coming from forks
pullRequestsFromForks: false
# Add a check to pull requests
addCheck: true
# Add a "Review in Gitpod" button as a comment to pull requests
addComment: true
# Add a "Review in Gitpod" button to the pull request's description
addBadge: false
tasks:
- name: Maven Build
# Prebuild: install dependencies and compile
init: mvn -B -DskipTests=true install
# Ready: just run tests to verify everything works
command: mvn -q test && echo "✅ Workspace ready! All tests passed."
vscode:
extensions:
- vscjava.vscode-java-pack