fix: add image cache warm pre-loadig to improve package list renderin… #366
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: Owlplug Dev | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!master' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'adopt' | |
| java-version: 25 | |
| cache: 'maven' | |
| - name: Build maven parent project | |
| run: mvn -B install -DskipTests | |
| - name: Run Test | |
| run: mvn test |