Skip to content

Commit 5a8762c

Browse files
committed
adding CI for shellcheck
1 parent 16c9079 commit 5a8762c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This is a basic workflow to help you get started with Actions
2+
name: CI shellcheck
3+
4+
# Controls when the action will run.
5+
on:
6+
# Triggers the workflow pull request events but only for the master branch
7+
pull_request:
8+
branches: [ master ]
9+
10+
# Allows you to run this workflow manually from the Actions tab
11+
workflow_dispatch:
12+
13+
# A workflow run is made up of one or more jobs that can run sequentially or in
14+
# parallel
15+
jobs:
16+
# This workflow contains a single job called "build"
17+
build:
18+
# The type of runner that the job will run on
19+
runs-on: ubuntu-latest
20+
21+
# Steps represent a sequence of tasks that will be executed as part of the
22+
# job
23+
steps:
24+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can
25+
# access it
26+
- uses: actions/checkout@v2
27+
- name: Run shellcheck
28+
run: shellcheck program.sh

0 commit comments

Comments
 (0)