Skip to content

chore(deps): update gradle/actions action to v6.0.1 #409

chore(deps): update gradle/actions action to v6.0.1

chore(deps): update gradle/actions action to v6.0.1 #409

Workflow file for this run

name: Check
on:
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup mise & tools
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
- name: Setup Gradle
uses: gradle/actions/setup-gradle@39e147cb9de83bb9910b8ef8bd7fff0ee20fcd6f # v6.0.1
- name: Build and test with Gradle
env:
# CI marker
CI: "true"
run: ./gradlew clean check
# https://github.com/marketplace/actions/junit-report-action
- name: Publish Test Report
uses: mikepenz/action-junit-report@49b2ca06f62aa7ef83ae6769a2179271e160d8e4 # v6.3.1
if: always() # always run even if the previous step fails
with:
report_paths: "build/test-results/**/*.xml"
require_tests: true
annotate_only: true
detailed_summary: true
# fail_on_failure: true