Fix case insensitive bug #1
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
@ -13,24 +13,17 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up JDK 21
|
- name: Set up JDK 21
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
|
cache: 'maven'
|
||||||
- name: Cache Maven packages
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ~/.m2
|
|
||||||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-maven-
|
|
||||||
|
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn clean install
|
run: ./mvnw clean verify
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: mvn test
|
run: ./mvnw test
|
||||||
|
|
||||||
- name: Run Checkstyle
|
- name: Run Checkstyle
|
||||||
run: mvn checkstyle:check
|
run: ./mvnw checkstyle:check
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user