Add chacha20 crypto #426
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: 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 | |