Skip to content

Issue #14825: fix false positive for WhitespaceAroundCheck #145

Issue #14825: fix false positive for WhitespaceAroundCheck

Issue #14825: fix false positive for WhitespaceAroundCheck #145

#####################################################################################
# GitHub Action to test performance regression.
#
# Workflow starts when:
# 1) push to master
# 2) PR created or pushed
#
#####################################################################################
name: Check-Performance-Regression
on:
push:
branches:
- master
pull_request:
branches: '*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
if: github.repository == 'checkstyle/checkstyle'
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
- name: Checkout latest code
uses: actions/checkout@v4
- name: Clone JDK 17 Repo
uses: actions/checkout@v4
with:
repository: openjdk/jdk17
path: ./checkstyle/.ci-temp/jdk17
- name: Setup local maven cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: checkstyle-maven-cache-${{ hashFiles('**/pom.xml') }}
- name: Run performance test
run: |
./.ci/check-performance-regression.sh