[Backport 2.x] bump commons-io to 2.140. #1112
This file contains 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: Gauntlet tests Runner | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build_rca_pkg: | |
runs-on: [ubuntu-latest] | |
name: Build and Run Gauntlet tests | |
strategy: | |
matrix: | |
java: | |
- 17 | |
steps: | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{matrix.java}} | |
# RCA in ./tmp/performance-analyzer-rca | |
- name: Checkout RCA | |
uses: actions/checkout@v2 | |
with: | |
path: ./tmp/performance-analyzer-rca | |
- name: Build RCA and run Gauntlet tests | |
working-directory: ./tmp/performance-analyzer-rca | |
run: ./gradlew build -Drun.gauntlet.tests=true |