Skip to content

Commit

Permalink
Added test of carriage returns
Browse files Browse the repository at this point in the history
  • Loading branch information
PathogenDavid committed Nov 8, 2021
1 parent 678c92c commit d01e1b2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test carriage return behavior
on: [workflow_dispatch, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Test
run: |
printf "Loading 0%%...\r"
printf "Loading 5%%...\r"
printf "Loading 10%%...\r"
printf "Loading 50%%...\r"
printf "Loading 50%%...\rLoading 57%%...\r"
sleep 15
printf "Loading 100%%...\r"
printf "Done\n"

0 comments on commit d01e1b2

Please sign in to comment.