update ISBN ranges #4
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
name: test, format, and push | |
on: | |
push: | |
branches: [dev] | |
permissions: | |
contents: write | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Test and format the changes | |
run: mvn --batch-mode clean verify -Dgpg.skip=true | |
- name: Commit formatted changes | |
run: | | |
git -c "user.name=Jenkins" -c "[email protected]" commit -a --amend --no-edit | |
git push origin HEAD:main |