Skip to content

Update README.md

Update README.md #773

Workflow file for this run

name: Playground
on:
workflow_dispatch:
pull_request:
push:
paths: ['.github/workflows/playground.yml', '**/*.yml']
release:
types:
- published
- released
permissions:
checks: write
defaults:
run:
shell: bash
jobs:
playground:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner:
- ubuntu-latest
- ubuntu-24.04-arm
outputs:
test: ${{ runner.os }}-${{ runner.arch }}
${{ runner.os }}-${{ runner.arch }}: test

Check failure on line 30 in .github/workflows/playground.yml

View workflow run for this annotation

GitHub Actions / Playground

Invalid workflow file

The workflow is not valid. .github/workflows/playground.yml (Line: 30, Col: 7): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.os .github/workflows/playground.yml (Line: 34, Col: 12): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.runner
steps:
- run: ldd --version
next:
needs: ${{ matrix.runner }}
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner:
- ubuntu-latest
- ubuntu-24.04-arm
steps:
- run: echo ${{ fromJSON(needs) }}