Skip to content

Bump mop version to 3.0.10.2 #4001

Bump mop version to 3.0.10.2

Bump mop version to 3.0.10.2 #4001

Workflow file for this run

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