Added gitea CI
backup.sh / bash (push) Failing after 7s Details

This commit is contained in:
Marco Cetica 2024-02-23 11:48:54 +01:00
parent a29f091e40
commit 33934a6a0d
Signed by: marco
GPG Key ID: 45060A949E90D0FD
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
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: Install using Makefile
run: |
make install
- name: Run unit tests
run: |
./tests.sh I_HAVE_READ_THE_HELPER