Skip to content

Update README.md with newer info about ECLAIR #450

Update README.md with newer info about ECLAIR

Update README.md with newer info about ECLAIR #450

Workflow file for this run

name: Checks
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
Static_Analysis:
runs-on: ubuntu-latest
container:
image: igormisic/improject:v1.0.1
options: --privileged --ulimit core=-1 --security-opt seccomp=unconfined
steps:
- name: Change Owner of Container Working Directory
run: chown root:root .
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check code format
run: make check_format
- name: Run cppcheck
run: make cppcheck
- name: Check MISRA C:2012
run: make misra