linutil/.github/workflows/bashisms.yml

36 lines
967 B
YAML
Raw Normal View History

2024-09-18 19:56:46 +01:00
name: Check for bashisms
on:
pull_request:
paths:
- core/tabs/**
2024-09-18 19:56:46 +01:00
merge_group:
workflow_dispatch:
jobs:
check-bashisms:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch origin ${{ github.base_ref }}
- name: Get a list of changed script files
2024-09-22 18:37:01 +01:00
id: get_sh_files
run: |
sh_files=$(git diff --name-only origin/${{ github.base_ref }} HEAD core/tabs | grep '\.sh$' || true)
2024-09-22 18:37:01 +01:00
echo "::set-output name=sh_files::$sh_files"
2024-09-18 19:56:46 +01:00
- name: Install devscripts
2024-09-22 18:37:01 +01:00
if: steps.get_sh_files.outputs.sh_files != ''
2024-09-19 01:18:22 +01:00
run: sudo apt-get update && sudo apt-get install devscripts
2024-09-18 19:56:46 +01:00
- name: Check for bashisms
2024-09-22 18:37:01 +01:00
if: steps.get_sh_files.outputs.sh_files != ''
run: |
2024-09-22 18:37:01 +01:00
for file in ${{ steps.get_sh_files.outputs.sh_files }}; do
if [[ -f "$file" ]]; then
checkbashisms "$file"
fi
done