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
|
||||
|
||||
- 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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user