mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
27 lines
506 B
YAML
27 lines
506 B
YAML
name: Check for bashisms
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- tabs/**
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
paths:
|
|
- tabs/**
|
|
merge_group:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-bashisms:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install devscripts
|
|
run: sudo apt-get update && sudo apt-get install devscripts
|
|
|
|
- name: Check for bashisms
|
|
working-directory: tabs
|
|
run: find . -name '*.sh' | xargs -P 4 -n 1 checkbashisms
|