Skip to content

Commit 499eec4

Browse files
authored
added shellcheck workflow
1 parent 04c78fc commit 499eec4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Shellcheck
4+
5+
# Triggers the workflow on push or pull request on all branches
6+
on: [push, pull_request]
7+
8+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
9+
jobs:
10+
# This workflow contains a single job called "build"
11+
build:
12+
# The type of runner that the job will run on
13+
runs-on: ubuntu-latest
14+
15+
# Steps represent a sequence of tasks that will be executed as part of the job
16+
steps:
17+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18+
- uses: actions/checkout@v2
19+
20+
# Runs a set of commands using the runners shell
21+
- name: Run shellcheck
22+
run: |
23+
shellcheck -s sh tmpsms

0 commit comments

Comments
 (0)