Skip to content

Commit

Permalink
run
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Jun 26, 2024
1 parent fe34fbf commit e3f1c92
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/step-summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,38 +17,38 @@ jobs:
run:
head -65536 /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 1024 | head -n 1 >> $GITHUB_STEP_SUMMARY

# summary-small:
# name: small
summary-small:
name: small

# runs-on: ubuntu-latest
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

# - name: step-summary-small
# run:
# cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 1024 | head -n 10 >> $GITHUB_STEP_SUMMARY
- name: step-summary-small
run:
head -65536 /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 1024 | head -n 10 >> $GITHUB_STEP_SUMMARY

# summary-65535:
# name: 65535
summary-65535:
name: 65535

# runs-on: ubuntu-latest
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

# - name: step-summary-65535
# run:
# cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 65535 >> $GITHUB_STEP_SUMMARY
- name: step-summary-65535
run:
head -65536 /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 65535 | head -n 1 >> $GITHUB_STEP_SUMMARY

# summary-limit:
# name: limit
summary-limit:
name: limit

# runs-on: ubuntu-latest
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

# - name: step-summary-limit
# run:
# cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 1024 | head -n 64 >> $GITHUB_STEP_SUMMARY
- name: step-summary-limit
run:
head -65536 /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 1024 | head -n 64 >> $GITHUB_STEP_SUMMARY

0 comments on commit e3f1c92

Please sign in to comment.