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 a3ba5e6 commit 3e7b9e2Copy full SHA for 3e7b9e2
.github/workflows/github-actions-demo.yml
@@ -27,4 +27,4 @@ jobs:
27
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
28
- name: Run my little go program that does busy work.
29
run: cd example-process && go run main.go
30
- - run: echo "🍏 This job's status is ${{ job.status }}." && sleep 60
+ - run: echo "🍏 This job's status is ${{ job.status }}." && sleep 10
example-process/main.go
@@ -11,7 +11,7 @@ func main() {
11
}
12
13
func printTenTimes() {
14
- for i := 0; i < 10; i++ {
+ for i := 0; i < 5; i++ {
15
fmt.Println("Looping...")
16
doNothingButLoop()
17
time.Sleep(5 * time.Second)
0 commit comments