Skip to content

Commit fb7304b

Browse files
authored
do debug where we can get logs
1 parent 8122c94 commit fb7304b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/python-lint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ jobs:
1010
flake8-lint:
1111
runs-on: ubuntu-latest
1212
name: Lint
13+
if: |
14+
github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3'
15+
|| (
16+
github.event.schedule
17+
&& github.repository_owner == 'ggerganov'
18+
)
19+
|| github.event.pull_request
20+
|| github.head_ref == 'master'
21+
|| (
22+
github.event.push
23+
&& github.event.push.ref == 'refs/heads/master'
24+
&& github.repository_owner == 'ggerganov'
25+
)
26+
|| (
27+
!github.event.push
28+
&& github.ref_name == 'master'
29+
)
1330
steps:
1431
- name: Check out source repository
1532
uses: actions/checkout@v4

0 commit comments

Comments
 (0)