Skip to content

docs(readme): add CI status badge #4

docs(readme): add CI status badge

docs(readme): add CI status badge #4

Workflow file for this run

name: Compile
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: prod
steps:
# Checkout the repository
- uses: actions/checkout@v4
# 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
# Verify JAVA_HOME is set
- name: Verify JAVA_HOME
run: echo "JAVA_HOME is set to: $JAVA_HOME"

Check failure on line 30 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
# Run Maven tests
- name: Run Maven Tests
# This command will execute your project's tests.
run: mvn test -f pom.xml