Skip to content

Fix KeywordScanner case insensitive search #1448

Fix KeywordScanner case insensitive search

Fix KeywordScanner case insensitive search #1448

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ master, release-* ]
pull_request:
branches: [ master, release-* ]
jobs:
build:
name: Standard build on Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['8', '11']
experimental: [false]
include:
- java: '15'
experimental: true
- java: '16'
experimental: true
- java: '17'
experimental: true
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout repo
uses: actions/[email protected]
- name: Configure Java & Maven
uses: actions/setup-java@v3
with:
java-version: '${{ matrix.java }}'
cache: 'maven'
distribution: 'corretto'
- name: Build with Maven
run: mvn -B --no-transfer-progress verify --file pom.xml
- name: Verify Changed Files
uses: tj-actions/verify-changed-files@v12
id: verify-changed-files
- name: Run step only when files change
if: steps.verify-changed-files.outputs.files_changed == 'true'
uses: actions/[email protected]
with:
script: |
core.setFailed('Changed files found: ${{ steps.verify-changed-files.outputs.changed_files }}')