Skip to content

Commit 03ad506

Browse files
committed
Initial commit
0 parents  commit 03ad506

File tree

5 files changed

+2251
-0
lines changed

5 files changed

+2251
-0
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: jonaski

.github/workflows/shellcheck.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: shellcheck
2+
on: [push, pull_request]
3+
4+
jobs:
5+
shellcheck:
6+
name: Shell Check
7+
runs-on: ubuntu-latest
8+
container:
9+
image: opensuse/leap:15.3
10+
steps:
11+
- uses: actions/checkout@v1.2.0
12+
- name: Update packages
13+
run: zypper --non-interactive --gpg-auto-import-keys ref
14+
- name: Install openSUSE dependencies
15+
run: zypper --non-interactive --gpg-auto-import-keys install ShellCheck
16+
- name: shellcheck
17+
run: shellcheck -s bash --exclude=SC2181 --exclude=SC1090 --exclude=SC2006 --exclude=SC2086 rsyncbackup3.sh

0 commit comments

Comments
 (0)