Skip to content

Nightly tests

Nightly tests #2

Workflow file for this run

name: Nightly tests
on:
workflow_dispatch:
inputs:
full-matrix:
description: "Run the full engine, host, and language version matrix"
required: false
type: boolean
default: "false"
name:
required: false
type: string
description: "Test run name"
schedule:
- cron: "*/5 * * * *"
# - cron: "0 4 * * *"
concurrency:
group: nightly-${{ github.head_ref || github.ref }}
cancel-in-progress: true
run-name:
${{ inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name }}
jobs:
run-full-tests-for-clients:
timeout-minutes: 50
#runs-on: ${{ matrix.host.RUNNER }}
strategy:
fail-fast: false
matrix:
client:
- java
- python
- node
- csharp
- go
- rust
uses: ./.github/workflows/${{ matrix.client }}.yml

Check failure on line 41 in .github/workflows/nightly.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly.yml

Invalid workflow file

error parsing called workflow ".github/workflows/nightly.yml" -> "./.github/workflows/${{ matrix.client }}.yml" : failed to fetch workflow: workflow was not found.
name: Run CI for ${{ matrix.client }}