Add splint, modified some files to pass checks #1
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: 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 ] |