Skip to content

#663: prohibit @Test method names starting with 'test' or 'should' #1292

#663: prohibit @Test method names starting with 'test' or 'should'

#663: prohibit @Test method names starting with 'test' or 'should' #1292

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2011-2026 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: mvn
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
mvn:
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, windows-2025, ubuntu-22.04, ubuntu-24.04, macos-14, macos-15]
java: [17, 21]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
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 -B --no-transfer-progress install -Pqulice