Skip to content

Commit

Permalink
revert: test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Dec 18, 2024
1 parent 91dd90d commit 5b6c2a8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
- os: windows-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Set up JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v3
with:
java-version: '17.0.7+7'
distribution: 'liberica'
java-package: 'jdk+fx'

- name: Cache local Maven repository and JDK cache
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: |
~/.m2/repository
Expand All @@ -42,7 +42,9 @@ jobs:
${{ runner.os }}-maven-
- name: Run tests
run: ./mvnw test -P system-jdk
run: ./mvnw test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: JaCoCo Code Coverage Report
id: jacoco_report
Expand All @@ -65,4 +67,4 @@ jobs:
with:
name: code-coverage-report-markdown
path: ./*/coverage-results.md
retention-days: 1
retention-days: 1

0 comments on commit 5b6c2a8

Please sign in to comment.