do debug where we can get logs
This commit is contained in:
parent
8122c9484c
commit
fb7304b275
1 changed files with 17 additions and 0 deletions
17
.github/workflows/python-lint.yml
vendored
17
.github/workflows/python-lint.yml
vendored
|
@ -10,6 +10,23 @@ jobs:
|
|||
flake8-lint:
|
||||
runs-on: ubuntu-latest
|
||||
name: Lint
|
||||
if: |
|
||||
github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3'
|
||||
|| (
|
||||
github.event.schedule
|
||||
&& github.repository_owner == 'ggerganov'
|
||||
)
|
||||
|| github.event.pull_request
|
||||
|| github.head_ref == 'master'
|
||||
|| (
|
||||
github.event.push
|
||||
&& github.event.push.ref == 'refs/heads/master'
|
||||
&& github.repository_owner == 'ggerganov'
|
||||
)
|
||||
|| (
|
||||
!github.event.push
|
||||
&& github.ref_name == 'master'
|
||||
)
|
||||
steps:
|
||||
- name: Check out source repository
|
||||
uses: actions/checkout@v4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue