Skip to content

Commit a01b266

Browse files
committed
more shellcheck
1 parent bb27b94 commit a01b266

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

.github/shellcheck.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/shellcheck.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Shellcheck CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Shellcheck Action
12+
uses: fearphage/shellcheck-action@0.1.0-debug1
13+
14+
- name: Run a one-line script
15+
run: echo Hello, world!
16+
- name: Run a multi-line script
17+
run: |
18+
echo Add other actions to build,
19+
echo test, and deploy your project.
20+

0 commit comments

Comments
 (0)