chore(deps): update dependency com.qulice:qulice-maven-plugin to v0.25.1 #1077
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
| # SPDX-FileCopyrightText: Copyright (c) 2024-2026 Objectionary.com | |
| # SPDX-License-Identifier: MIT | |
| --- | |
| # yamllint disable rule:line-length | |
| name: mvn | |
| 'on': | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: [ 'README.md' ] | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: [ 'README.md' ] | |
| jobs: | |
| mvn: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-24.04 ] | |
| java: [ 22 ] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| LC_ALL: C | |
| LANG: C | |
| LANGUAGE: C | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: | | |
| sudo wget -q -O /usr/bin/phino http://phino.objectionary.com/releases/ubuntu-24.04/phino-latest | |
| sudo chmod a+x /usr/bin/phino | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java }} | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-jdk-${{ matrix.java }}-maven- | |
| - run: mvn clean install --errors -Dinvoker.skip --batch-mode | |
| - run: mvn clean test -Pgradle |