Skip to content

Commit

Permalink
add ok tests for checking run: with pyflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Apr 10, 2024
1 parent a3d60f1 commit a707edc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions testdata/ok/pyflakes_python_shell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: push
defaults:
run:
shell: python
jobs:
step-level:
runs-on: ubuntu-latest
steps:
- run: print('hello')
shell: python
- run: print('hello')
shell: 'python {0}'
job-level:
runs-on: ubuntu-latest
defaults:
run:
shell: python
steps:
- run: print('hello')
workflow-level:
runs-on: ubuntu-latest
steps:
- run: print('hello')

0 comments on commit a707edc

Please sign in to comment.