Skip to content

Commit

Permalink
Improve CI triggers, add dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-brm committed Nov 26, 2023
1 parent 2eab9db commit 711042b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ on:
push:
branches:
- master
- '[0-9]+.[0-9]+'
- 116-fix-ci
pull_request:
branches:
- master
- '[0-9]+.[0-9]+'
schedule:
- cron: '0 4 * * *'
jobs:
Expand All @@ -29,7 +26,7 @@ jobs:
distribution: 'temurin'
cache: 'maven'
- name: Run tests
run: mvn clean verify -B
run: mvn clean verify -B -ntp

# Deploy:
# name: Deploy to OSSRH
Expand All @@ -41,11 +38,13 @@ jobs:
# VERTX_NEXUS_PASSWORD: ${{ secrets.VERTX_NEXUS_PASSWORD }}
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# uses: actions/checkout@v3
# - name: Install JDK
# uses: joschi/setup-jdk@v2
# uses: actions/setup-java@v3
# with:
# java-version: 8
# java-version: ${{ matrix.jdk }}
# distribution: 'temurin'
# cache: 'maven'
# - name: Get project version
# run: echo "PROJECT_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:evaluate -Dexpression=project.version -B | grep -v '\[')" >> $GITHUB_ENV
# - name: Maven deploy
Expand Down

0 comments on commit 711042b

Please sign in to comment.