Fix APT invokation in CI

This commit is contained in:
Alex Kotov 2022-01-17 19:28:40 +05:00
parent 0bf3e724ab
commit 9ead6ecd7b
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt install clang tcc
run: sudo apt-get -y install clang tcc
- name: autogen
run: ./autogen.sh
- name: configure
@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt install cppcheck
run: sudo apt-get -y install cppcheck
- name: cppcheck source code
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability include/ src/
- name: cppcheck examples