Skip to content

Light client benchmark #3

Light client benchmark

Light client benchmark #3

Workflow file for this run

name: Light client benchmark
on:
workflow_dispatch:
inputs:
light-clients:
description: 'Light clients to benchmark, e.g. `aptos,ethereum`'
type: string
required: true
jobs:
benchmark:
name: Light client benchmark
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package: ${{ fromJSON(${{ inputs.light-clients }}) }}

Check failure on line 18 in .github/workflows/matrix-input.yml

View workflow run for this annotation

GitHub Actions / Light client benchmark

Invalid workflow file

The workflow is not valid. .github/workflows/matrix-input.yml (Line: 18, Col: 18): Unexpected symbol: '${{'. Located at position 10 within expression: fromJSON(${{ inputs.light-clients .github/workflows/matrix-input.yml (Line: 18, Col: 18): Unexpected value '${{ fromJSON(${{ inputs.light-clients }}) }}'
steps:
- name: Echo input
run: |
echo "Package: ${{ matrix.package }}"