All checks were successful
Check scripts syntax / check-scripts-syntax (push) Successful in 7s
Test automated-nfs-backup / test-automated-nfs-backup (push) Successful in 8s
Haven Notify Build and Deploy / Build Haven Notify Image (push) Successful in 30s
Haven Notify Build and Deploy / Deploy Haven Notify (internal) (push) Successful in 3s
17 lines
419 B
YAML
17 lines
419 B
YAML
name: Check scripts syntax
|
|
on: [push]
|
|
|
|
jobs:
|
|
check-scripts-syntax:
|
|
runs-on: runner-slim
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- name: Check scripts syntax
|
|
run: |
|
|
bash -n ${{ gitea.workspace }}/*.sh
|
|
bash -n ${{ gitea.workspace }}/k8s/*.sh
|