File: issue-35.yml

package info (click to toggle)
rust-github-actions-models 0.39.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 544 kB
  • sloc: makefile: 4
file content (21 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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!"