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 a128329 commit 890a03eCopy full SHA for 890a03e
.github/workflows/third_party.yml
@@ -154,7 +154,16 @@ jobs:
154
155
typeguard:
156
name: typeguard tests
157
- if: false # TODO: unskip when typeguard's tests pass on typing_extensions>=4.6.0
+ if: >-
158
+ # if 'schedule' was the trigger,
159
+ # don't run it on contributors' forks
160
+ ${{
161
+ github.event_name != 'schedule'
162
+ || (
163
+ github.repository == 'python/typing_extensions'
164
+ && github.event_name == 'schedule'
165
+ )
166
+ }}
167
strategy:
168
fail-fast: false
169
matrix:
0 commit comments