diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4c8115..d07b18f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - profile: [ Fast ] + profile: [ Debug, Release, Fast ] steps: - name: Checkout repository diff --git a/tests/poly/test_imp_lagrange.cpp b/tests/poly/test_imp_lagrange.cpp index d307777..57b5ab6 100644 --- a/tests/poly/test_imp_lagrange.cpp +++ b/tests/poly/test_imp_lagrange.cpp @@ -31,5 +31,5 @@ TEST(ImprovedLagrangeTest, Functions) { alfi::dist::circle_proj(31, -2*M_PI, 2*M_PI), alfi::dist::uniform(10, -2*M_PI, 2*M_PI), [](double x) { return std::sin(x) + std::cos(x); }, - 1e-6); + 1e-5); } \ No newline at end of file