aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-03-31 00:22:53 +0300
committerGravatar Vitaly Takmazov2021-03-31 00:22:53 +0300
commit261a46ba225600d4a6554efb3c219537d08f2dd4 (patch)
treefc941b017ef193f558ab232e07d9008bec9de9fc /.github
parentb034b3ede4844c6873fef9b2f031d698bc8b0327 (diff)
Update CI configuration
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml2
-rw-r--r--.github/workflows/ci.yml8
2 files changed, 2 insertions, 8 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 03562017..4b72c731 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -5,7 +5,7 @@ updates:
schedule:
interval: daily
open-pull-requests-limit: 10
-- package-ecosystem: gradle
+- package-ecosystem: maven
directory: "/"
schedule:
interval: daily
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 681044e8..008b2e2b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -11,12 +11,6 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 15
- - name: Cache Gradle packages
- uses: actions/cache@v2
- with:
- path: ~/.gradle/caches
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
- restore-keys: ${{ runner.os }}-gradle
- name: Cache NPM modules
uses: actions/cache@v2
env:
@@ -29,7 +23,7 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: Run tests
- run: gradle check
+ run: mvn package
- uses: mikepenz/action-junit-report@v2
with:
report_paths: '**/build/test-results/test/TEST-*.xml'