Skip to content

build(deps): bump commons-io:commons-io from 2.15.0 to 2.15.1 #298

build(deps): bump commons-io:commons-io from 2.15.0 to 2.15.1

build(deps): bump commons-io:commons-io from 2.15.0 to 2.15.1 #298

Workflow file for this run

# Carry out tests on pull requests
name: PR Tests
on:
pull_request:
branches: [ 'master' ]
permissions:
contents: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Test Pull Request
uses: gradle/gradle-build-action@v2
with:
arguments: test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'