2024-12-27 23:27:36 -03:00
|
|
|
name: Check scripts syntax
|
2024-12-27 23:11:17 -03:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-12-27 23:27:36 -03:00
|
|
|
check-scripts-syntax:
|
2024-12-27 23:11:17 -03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: List files in the repository
|
|
|
|
run: |
|
|
|
|
ls ${{ gitea.workspace }}
|
2024-12-27 23:27:36 -03:00
|
|
|
- name: Check scripts syntax
|
2024-12-27 23:11:17 -03:00
|
|
|
run: |
|
2024-12-27 23:27:36 -03:00
|
|
|
bash -n ${{ gitea.workspace }}/*.sh
|