Remove unused 'retries' property #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is used to update the build status badge in the README file. | |
name: CI Workflow | |
on: | |
push: | |
branches: | |
- 'release/next' | |
pull_request: | |
branches: | |
- 'release/next' | |
schedule: | |
- cron: '0 0 1 * *' # Run this workflow at midnight on the first day of each month. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B package verify |