/
githubmirror
/
libeconf
Обзор
Документация
Войти
/
githubmirror
/
libeconf
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/ccpp.yml
17 строк
437 B
Stefan Schubert
new call: econf_setExtValue (#239)
17 окт 2025, 14:32
Не верифицирован
17 окт 2025, 14:32
c932f1c
Код
Авторство
О чём код?
name: C/C++ CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: cmake configure with ASAN and UBSAN checks run: cmake -D BUILD_TESTS=ON -B build -DCMAKE_BUILD_TYPE=Sanitize - name: make with ASAN and UBSAN checks run: make -C build - name: make check run: CTEST_OUTPUT_ON_FAILURE=1 ASAN_OPTIONS=detect_leaks=0 make -C build check