Skip to content

Add splint, modified some files to pass checks #1

Add splint, modified some files to pass checks

Add splint, modified some files to pass checks #1

Workflow file for this run

name: Splint Check
on: [push, pull_request, workflow_dispatch]
jobs:
analyzer_check_job:
runs-on: ubuntu-22.04
name: Analyze with 'splint'
steps:
- uses: actions/checkout@v4
- name: Install 'splint'
run: |
sudo apt-get update -q && sudo apt install splint
- name: splint analyzer
run: |
./do_splint.sh | tee splint.out
[ ! -s splint.out ]