Skip to content

Commit

Permalink
Test matrix inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Oct 10, 2024
1 parent 2acd286 commit 5f6829b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/matrix-input.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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:
matrix:
fail-fast: false
package: ${{ fromJSON(${{ inputs.light-clients }}) }}
steps:
name: Echo input
run: |
echo "Package: ${{ matrix.package }}"

0 comments on commit 5f6829b

Please sign in to comment.