We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 678c92c commit d01e1b2Copy full SHA for d01e1b2
.github/workflows/cr-test.yml
@@ -0,0 +1,16 @@
1
+name: Test carriage return behavior
2
+on: [workflow_dispatch, push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Test
8
+ run: |
9
+ printf "Loading 0%%...\r"
10
+ printf "Loading 5%%...\r"
11
+ printf "Loading 10%%...\r"
12
+ printf "Loading 50%%...\r"
13
+ printf "Loading 50%%...\rLoading 57%%...\r"
14
+ sleep 15
15
+ printf "Loading 100%%...\r"
16
+ printf "Done\n"
0 commit comments