Prepare puch to maven central : first version #15
Workflow file for this run
This file contains hidden or 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: 'Build running test' | |
| on: | |
| pull_request | |
| jobs: | |
| check_pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| # overrides the file ~/.m2/settings.xml with data to publish to maven pkg server with id github | |
| overwrite-settings: true | |
| - name: Verify | |
| run: | | |
| mvn -B verify |