Skip to content

test

test #18

name: PR open
on:
pull_request:
branches:
- "dev/*"
types:
- opened
- reopened
workflow_dispatch:
inputs:
source-branch:
type: string
description: Base branch to use if manually starting. By default base_ref will empty if triggering manually hence base_ref is only available on PRs.
jobs:
test-with-server-release:
name: Build stage - Test with latest version of Aerospike Enterprise Server
uses: ./.github/workflows/build-dev.yaml

Check failure on line 19 in .github/workflows/pull-request-open-dev.yaml

View workflow run for this annotation

GitHub Actions / PR open

Invalid workflow file

The workflow is not valid. In .github/workflows/pull-request-open-dev.yaml (Line: 19, Col: 11): Error from called workflow aerospike/aerospike-client-java/.github/workflows/build-dev.yaml@f77993ec941fe2ce3afb781d42f009b9f9a27d77 (Line: 37, Col: 3): The workflow must contain at least one job with no dependencies.
with:
branch: ${{ github.ref }}
source-branch: ${{ inputs.source-branch || github.base_ref }}
use-server-rc: false
upload-artifacts: false
secrets: inherit
test-with-server-rc:
name: Build stage - Test with latest RC version of Aerospike Enterprise Server
uses: ./.github/workflows/build-dev.yaml
with:
branch: ${{ github.base_ref || inputs.branch }}
source-branch: ${{ inputs.source-branch || github.base_ref }}
use-server-rc: true
upload-artifacts: false
run-tests: true
secrets: inherit