Skip to content

fix(test): increase test timeout to 300 seconds #13

fix(test): increase test timeout to 300 seconds

fix(test): increase test timeout to 300 seconds #13

Workflow file for this run

name: Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
concurrency:
group: 'test'
cancel-in-progress: false
jobs:
test:
runs-on: ubuntu-latest
environment: dev
steps:
# Checkout the repository
- uses: actions/checkout@v4
with:
fetch-depth: 5
# Set up JDK 24
- name: Set up JDK 24
uses: actions/setup-java@v4
with:
java-version: '24'
distribution: 'temurin'
cache: maven
cache-dependency-path: pom.xml
- name: Verify JAVA_HOME
run: |
echo "JAVA_HOME is set to: $JAVA_HOME"
# Run Maven tests
- name: Run Maven Tests
# This command will execute your project's tests.
run: mvn test -f pom.xml