Skip to content

Update light box and dust cap interfaces to new style (#2112) #749

Update light box and dust cap interfaces to new style (#2112)

Update light box and dust cap interfaces to new style (#2112) #749

name: Check Codestyle
on:
workflow_dispatch:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get INDI Sources
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- name: Check codestyle of all changed files with suffix cpp,cxx,c,h
run: |
sudo apt-get update
sudo apt-get -qq -y install astyle
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "changed file $file";
scripts/check-codestyle.sh "$file";
done
shell: bash