diff options
author | Vitaly Takmazov | 2023-05-06 14:28:30 +0300 |
---|---|---|
committer | vitalyster | 2023-05-09 17:48:44 +0300 |
commit | d19102fbc5ad9bd43f100588c2a6a1bfa025c1d3 (patch) | |
tree | c9106c0eaf1dd1ae761ff013128feb5e43cb7946 /.github/workflows | |
parent | 6cfe7baef576be84d7042126e0d7bdc777cbbb26 (diff) |
CI: use Maven Wrapper
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93146645..54345f6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: cache: "npm" - run: npm install - name: Run tests - run: mvn -P${{ matrix.profile }} clean package + run: ./mvnw -P${{ matrix.profile }} clean package - uses: mikepenz/action-junit-report@v2 with: report_paths: "**/target/surefire-reports/TEST-*.xml" |