File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1- # Limited testing using Python 3.9 only, INCLUDING integration tests
2- # Triggered by a regular (non-draft) pull request created
3- # Triggered by a regular (non-draft) pull request updated by a new commit
4- # Triggered by a draft pull request converted into a regular (non-draft) one
1+ # Limited testing using Python 3.9 only INCLUDING integration tests
2+ # Triggered by a regular (non-draft) pull request created, except to main branch
3+ # Triggered by a regular (non-draft) pull request updated by a new commit, except to main branch
4+ # Triggered by a draft pull request to develop branch converted into a regular (non-draft) one
55
66name : quick-tests-integration
77
88on :
99 pull_request :
10+ branches : [develop]
1011 types : [opened, synchronize, ready_for_review]
1112
1213jobs :
Original file line number Diff line number Diff line change 1- # Limited testing using Python 3.9 only, EXCLUDING integration tests
2- # Triggered by a push (new branch, or new commit to any branch), EXCEPT
1+ # Limited testing using Python 3.9 only EXCLUDING integration tests
2+ # Triggered by any push (new branch, or new commit to any branch), EXCEPT
33# if that branch is part of a regular (non-draft) pull request
44
55name : quick-tests
1010jobs :
1111
1212 quick-tests :
13- if : ${{ !github.event.pull_request || github.event.pull_request.draft == true }}
13+ if : ${{ !(
14+ github.event.pull_request &&
15+ github.event.pull_request.draft == false
16+ ) }}
1417 runs-on : ubuntu-latest
1518 steps :
1619 - name : Checkout repository
You can’t perform that action at this time.
0 commit comments