forked from rhysd/actionlint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/test\.yaml:9:9: pyflakes reported issue in this script: .+ \[pyflakes\]/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
on: push | ||
jobs: | ||
job-level: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: python | ||
steps: | ||
- run: print(unknown_var) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/test\.yaml:7:9: pyflakes reported issue in this script: .+ \[pyflakes\]/ | ||
/test\.yaml:10:9: pyflakes reported issue in this script: .+ \[pyflakes\]/ | ||
/test\.yaml:13:9: pyflakes reported issue in this script: .+ \[pyflakes\]/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
on: push | ||
jobs: | ||
step-level: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Lint check failed. The error is output to stdout (#411) | ||
- run: print(unknown_var) | ||
shell: python | ||
# Syntax check failed. The error is output to stderr (#411) | ||
- run: print( | ||
shell: python | ||
# Check custom shell | ||
- run: print(unknown_var) | ||
shell: 'python {0}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/test\.yaml:11:9: pyflakes reported issue in this script: .+ \[pyflakes\]/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
on: push | ||
|
||
defaults: | ||
run: | ||
shell: python | ||
|
||
jobs: | ||
job-level: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: print(unknown_var) |