Bump mop version to 3.0.10.2 #4001
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: mop mvn build check and ut | |
| on: | |
| pull_request: | |
| branches: | |
| - branch-* | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| push: | |
| branches: | |
| - branch-* | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Cache Maven packages | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Configure Maven Settings | |
| uses: s4u/[email protected] | |
| with: | |
| servers: '[{"id": "github", "username": "streamnativebot", "password": "${{ secrets.SNBOT_GITHUB_TOKEN }}"}]' | |
| - name: License check | |
| run: mvn license:check | |
| - name: Build with Maven skipTests | |
| run: mvn clean install -DskipTests | |
| - name: Style check | |
| run: mvn checkstyle:check |