Skip to content

Commit 6b76b8e

Browse files
committed
Enable concurency for CI
1 parent fedc98e commit 6b76b8e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [ "main" ]
88

9+
concurrency:
10+
group: CI-${{ github.ref }}
11+
cancel-in-progress: true
12+
913
env:
1014
GO_VERSION: '1.19'
1115

@@ -68,4 +72,6 @@ jobs:
6872
- name: Run entities example
6973
env:
7074
BACKSTAGE_BASE_URL: http://localhost:${{ job.services.backstage.ports[7000] }}/api
71-
run: go run ./examples/entities/main.go
75+
run: |
76+
sleep 30
77+
go run ./examples/entities/main.go

0 commit comments

Comments
 (0)