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 d05f817 commit 0531d7dCopy full SHA for 0531d7d
.github/workflows/shell_linter.yml
@@ -0,0 +1,23 @@
1
+name: Shell Linter
2
+
3
+# Controls when the action will run. Triggers the workflow on push or pull request
4
+# events but only for the master branch
5
+on:
6
+ push:
7
+ branches: [ master ]
8
+ pull_request:
9
10
11
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12
+jobs:
13
+ shell-lint:
14
+ # The type of runner that the job will run on
15
+ runs-on: ubuntu-latest
16
17
+ # Steps represent a sequence of tasks that will be executed as part of the job
18
+ steps:
19
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
20
+ - uses: actions/checkout@v2
21
22
+ - name: Shell Linter
23
+ uses: azohra/[email protected]
0 commit comments