Skip to content

Remove the non-existent parameter includeEmpty in KDoc of Arb.Compani… #1489

Remove the non-existent parameter includeEmpty in KDoc of Arb.Compani…

Remove the non-existent parameter includeEmpty in KDoc of Arb.Compani… #1489

Workflow file for this run

name: master
on:
push:
paths-ignore:
- 'doc/**'
- 'documentation/**'
- '*.md'
- '*.yml'
- '.github/workflows/**'
branches:
- master
permissions:
contents: read
jobs:
validate-abi:
name: Run ABI validations
if: github.repository == 'kotest/kotest'
uses: ./.github/workflows/run-gradle.yml
with:
runs-on: ubuntu-latest
ref: ${{ inputs.ref }}
task: apiCheck --continue
validate-all:
name: Run all Gradle validations
if: github.repository == 'kotest/kotest'
needs: validate-abi
strategy:
matrix:
include:
- os: macos-latest
- os: ubuntu-latest
- os: windows-latest
fail-fast: false
uses: ./.github/workflows/run-gradle.yml
with:
runs-on: ${{ matrix.os }}
ref: ${{ inputs.ref }}
task: check --continue
publish-sonatype:
name: Publish all artifacts to Sonatype (Maven Central)
if: github.repository == 'kotest/kotest'
needs: [ validate-abi, validate-all ]
uses: ./.github/workflows/run-gradle.yml
secrets: inherit
with:
runs-on: macos-latest
ref: ${{ inputs.ref }}
task: publishAllPublicationsToDeployRepository