Fix case insensitive bug #1

Merged
ansv7779 merged 2 commits from fix-case-bug into main 2025-05-05 14:13:25 +02:00
Showing only changes of commit a4201ea93f - Show all commits

View File

@ -13,24 +13,17 @@ jobs:
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
cache: 'maven'
- name: Build with Maven
run: mvn clean install
run: ./mvnw clean verify
- name: Run tests
run: mvn test
run: ./mvnw test
- name: Run Checkstyle
run: mvn checkstyle:check
run: ./mvnw checkstyle:check