From 3289e5ecae857601432711b85fea05d07ebc503d Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 16 Sep 2023 17:45:33 +0300 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d43c782..de938c4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: - { compiler: clang, version: 15, build_type: Release, cppstd: 17} - { compiler: clang, version: 15, build_type: Debug, cppstd: 20, asan: ON } - { compiler: clang, version: 15, build_type: Release, cppstd: 20, asan: OFF } + - { compiler: clang, version: 15, build_type: Release, cppstd: 20, std_format: ON } container: image: ${{ matrix.config.compiler == 'clang' && 'teeks99/clang-ubuntu' || matrix.config.compiler }}:${{ matrix.config.version }} name: "${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }}, ${{ matrix.config.build_type }} DSPDLOG_USE_STD_FORMAT=${{ matrix.config.std_format || 'OFF' }})"