Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
WentsingNee committed Apr 6, 2024
1 parent dc4127a commit a6954a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
Expand Down Expand Up @@ -94,7 +95,7 @@ jobs:
cxx_standard: 20

runs-on: ${{matrix.os}}
continue-on-error: true
continue-on-error: false

steps:
- name: Show CMake Version
Expand Down
2 changes: 1 addition & 1 deletion test/type_traits/void_type.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct could_use_typedef<T, typename kerbal::type_traits::void_type<

KERBAL_TEST_CASE(test_yes_no_type_could_use_typedef, "test yes_no_type could use typedef")
{
KERBAL_TEST_CHECK_EQUAL_STATIC(could_use_typedef<FooNoTypedef>::value, false);
KERBAL_TEST_CHECK_STATIC(could_use_typedef<FooNoTypedef>::value, false);
KERBAL_TEST_CHECK_EQUAL_STATIC(could_use_typedef<FooHasTypedef>::value, true);

#if KERBAL_COMPILER_ID == KERBAL_COMPILER_ID_GNU
Expand Down

0 comments on commit a6954a9

Please sign in to comment.