Skip to content

chore(deps): update plugin multijvmtesting to v3.2.2 #2027

chore(deps): update plugin multijvmtesting to v3.2.2

chore(deps): update plugin multijvmtesting to v3.2.2 #2027

name: CI
on:
push:
tags: '*'
branches-ignore:
- 'autodelivery**'
- 'bump-**'
- 'renovate/**'
paths-ignore:
- 'CHANGELOG.md'
- 'renovate.json'
- '.gitignore'
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ windows-2022, macos-14, ubuntu-24.04 ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: DanySK/[email protected]
with:
check-command: ./gradlew check runAll --parallel
should-deploy: false
success:
runs-on: ubuntu-24.04
needs:
- build
if: >-
always() && (
contains(join(needs.*.result, ','), 'failure')
|| !contains(join(needs.*.result, ','), 'cancelled')
)
steps:
- name: Verify that there were no failures
run: ${{ !contains(join(needs.*.result, ','), 'failure') }}