github-actions-models 1.24.0-rc3

Unofficial, high-quality data models for GitHub Actions workflows, actions, and related components
Documentation
# https://github.com/zizmorcore/github-actions-models/issues/35

name: Test Workflow
permissions: {}

on: ["push"]

# LIMIT = true|false

jobs:
  test:
    name: Test job
    runs-on: ubuntu-24.04
    strategy:
      # max-parallel: 1
      max-parallel: ${{ vars.LIMIT && 1 || 8 }}
    steps:
      - name: Test step
        shell: bash
        run: |
          echo "Hello World!"