Fix typos in Quartz module job operations description #2091
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Quick Build | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java_version: [21] | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java_version }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java_version }} | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Install | |
| run: mvn install -DskipTests -q -B | |
| env: | |
| BUILD_PORT: 0 | |
| BUILD_SECURE_PORT: 0 | |
| BUILD_LOG_LEVEL: 'ERROR' | |
| - name: Build | |
| run: mvn package | |
| env: | |
| BUILD_PORT: 0 | |
| BUILD_SECURE_PORT: 0 | |
| BUILD_LOG_LEVEL: 'ERROR' | |
| - name: Test Result | |
| uses: mikepenz/action-junit-report@v5 | |
| if: failure() | |
| with: | |
| check_name: JUnit ${{ matrix.kind }} ${{ matrix.java_version }} ${{ matrix.os }} | |
| report_paths: '*/target/*/TEST-*.xml' |