Sim crash fix - looks like found root cause #829
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |