refactor: 增加新的Recycler工具来替代ThreadLocal对象池. #2
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: Pull Request test 5.0.x | |
| on: | |
| pull_request: | |
| branches: [ 5.0.x ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Cache Maven Repository | |
| uses: actions/[email protected] | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | |
| - name: Build with Maven | |
| run: ./mvnw test -q |