linutil/.github/workflows/bashisms.yml

32 lines
724 B
YAML
Raw Normal View History

2024-09-18 19:56:46 +01:00
name: Check for bashisms
on:
# push:
# paths:
# - core/tabs/**
# branches: [ "main" ]
2024-09-18 19:56:46 +01:00
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 }}
2024-09-18 19:56:46 +01:00
- name: Install devscripts
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 in changed files
run: |
for file in $(git diff --name-only origin/${{ github.base_ref }} HEAD core/tabs); do
if [[ "$file" == *.sh ]]; then
checkbashisms "$file"
fi
done