Skip to content

Commit 9c7c756

Browse files
committed
* adding workflow_dispatch
* capturing 'uname -a' from runner
1 parent be6f9bf commit 9c7c756

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pylint.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Pylint
22

3-
on: [push]
3+
on: [push, workflow_dispatch]
44

55
jobs:
66
build:
@@ -22,3 +22,5 @@ jobs:
2222
- name: Analysing the code with pylint
2323
run: |
2424
pylint $(git ls-files '*.py')
25+
- name: output info
26+
run: uname -a

0 commit comments

Comments
 (0)