feat:optimize examples. #18
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 with Maven | |
on: | |
push: | |
branches: | |
- 2022.0 | |
- 2021.0 | |
- 2020.0 | |
pull_request: | |
branches: | |
- 2022.0 | |
- 2021.0 | |
- 2020.0 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codes | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Test with Maven | |
run: mvn -U -B clean test |