mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
Use full command line options in scripts
This commit is contained in:
parent
e0899e3926
commit
bc84bc61a0
1 changed files with 4 additions and 4 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -25,7 +25,7 @@ jobs:
|
|||
toolchain: stable
|
||||
|
||||
- name: dependencies
|
||||
run: sudo apt-get -y install clang tcc
|
||||
run: sudo apt-get --yes install clang tcc
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
|
@ -42,7 +42,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: dependencies
|
||||
run: sudo apt-get -y install cppcheck
|
||||
run: sudo apt-get --yes install cppcheck
|
||||
- name: cppcheck source code
|
||||
# TODO: don't suppress "src/printf.c"
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress='*:src/printf.c' include/ src/
|
||||
|
@ -58,7 +58,7 @@ jobs:
|
|||
with:
|
||||
submodules: true
|
||||
- name: dependencies
|
||||
run: sudo apt-get -y install cppcheck rake
|
||||
run: sudo apt-get --yes install cppcheck rake
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
|
@ -82,7 +82,7 @@ jobs:
|
|||
with:
|
||||
ruby-version: 3.0
|
||||
- name: dependencies
|
||||
run: sudo apt-get -y install cppcheck
|
||||
run: sudo apt-get --yes install cppcheck
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
|
|
Loading…
Reference in a new issue