File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : CI
2+
23on :
34 push :
45 branches :
89 - main
910 - next
1011
12+ concurrency :
13+ group : ${{ github.workflow }}-${{ github.ref }}
14+ cancel-in-progress : true
15+
1116jobs :
1217 lint :
1318 name : lint
1419 runs-on : ubuntu-latest
15-
20+ timeout-minutes : 5
1621
1722 steps :
1823 - uses : actions/checkout@v4
3338 test :
3439 name : test
3540 runs-on : ubuntu-latest
41+ timeout-minutes : 10
3642
3743 steps :
3844 - uses : actions/checkout@v4
5359 examples :
5460 name : examples
5561 runs-on : ubuntu-latest
62+ timeout-minutes : 5
5663
5764 steps :
5865 - uses : actions/checkout@v4
6875 run : |
6976 rye sync --all-features
7077
71- - env :
78+ - env :
7279 CLOUDFLARE_ACCOUNT_ID : f037e56e89293a057740de681ac9abbe
7380 CLOUDFLARE_EMAIL : terraform-acceptance-test@cfapi.net
7481 CLOUDFLARE_ZONE_ID : 0da42c8d2132a9ddaf714f9e7c92011
Original file line number Diff line number Diff line change 11name : Release Doctor
2+
23on :
34 pull_request :
45 workflow_dispatch :
56
7+ concurrency :
8+ group : ${{ github.workflow }}-${{ github.ref }}
9+ cancel-in-progress : true
10+
611jobs :
712 release_doctor :
813 name : release doctor
914 runs-on : ubuntu-latest
15+ timeout-minutes : 2
1016 if : github.repository == 'cloudflare/cloudflare-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1117
1218 steps :
You can’t perform that action at this time.
0 commit comments