Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .travis.yml #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
39 changes: 39 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
language: java

# Specify JDK versions to test against
jdk:
- openjdk11

# Cache Maven dependencies to speed up builds
cache:
directories:
- $HOME/.mvn/wrapper/

stages:
- name: Building
- name: Testing

jobs:
include:
- stage: Building
before_script:
- echo "Starting build process..."
script:
- mvn clean install
- stage: Testing
before_script:
- echo "Starting test process..."
script:
- mvn verify
after_failure:
- echo "Tests failed. Check the test results for details."
after_success:
- echo "Tests passed successfully."

# Enable notifications via email
notifications:
email:
recipients:
- [email protected]
on_success: always
on_failure: always