Added CI
This commit is contained in:
parent
f98a7e2269
commit
2ed966304c
22
.github/workflows/backup.sh.yml
vendored
Normal file
22
.github/workflows/backup.sh.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: backup.sh
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
bash:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
apt update
|
||||||
|
apt -y install rsync tar openssl shellcheck
|
||||||
|
- name: Run ShellCheck
|
||||||
|
run: |
|
||||||
|
shellcheck backup.sh
|
||||||
|
shellcheck tests.sh
|
||||||
|
- name: Run unit tests
|
||||||
|
run: |
|
||||||
|
./tests.sh I_HAVE_READ_THE_HELPER
|
Loading…
Reference in New Issue
Block a user