From 8891de07b2d83dd519c5270862157a0dea1e183d Mon Sep 17 00:00:00 2001 From: vityaman Date: Wed, 20 Nov 2024 23:31:09 +0300 Subject: [PATCH] github matrix --- .github/workflows/check.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3ae1818..621921b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -36,10 +36,14 @@ jobs: sudo apt install bear - name: Build - run: bear -- make compile + run: | + bear -- make compile \ + COMPILER=${{ matrix.compiler }} \ + OPTIMIZATION_LEVEL=${{ matrix.optimization_level }}\ + SANITIZERS=${{ matrix.sanitizers }} - name: Test - run: make + run: ./build/bin/app - name: Check Format run: make check-format