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 8885886 commit 755c359Copy full SHA for 755c359
.github/workflows/testing.yml
@@ -6,8 +6,8 @@ on:
6
- master
7
8
jobs:
9
- run_action:
10
- name: Test run action
+ run_action_warnings:
+ name: Test run action (triggers warnings)
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v1
@@ -17,6 +17,15 @@ jobs:
17
only_warn: 1
18
max_line_length: 90
19
20
+ run_action_valid:
21
+ name: Test run action (valid)
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v1
25
+ - uses: ./
26
+ with:
27
+ path: example_valid
28
+
29
codespell:
30
name: Check for spelling errors
31
example_valid/example.py
@@ -0,0 +1,2 @@
1
+def good_code():
2
+ pass
0 commit comments