Skip to content

Fix GitHub workflow

Fix GitHub workflow #4

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [ master ]
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Run the Maven integration tests
run: mvn clean test
- run: echo "This job's status is ${{ job.status }}."