Skip to content

Commit

Permalink
minor github actions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xann16 committed May 8, 2024
1 parent a93aceb commit 1b42e10
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
# TODO: investigate why this does not work
exclude:
- compiler: llvm-17
- mpi: mpich
mpi: mpich

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup MPI
uses: mpi4py/setup-mpi@v1
Expand Down
2 changes: 1 addition & 1 deletion libs/core/include/core/sample.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace vortex
{
[[nodiscard]] int answer() noexcept;
}
}
2 changes: 1 addition & 1 deletion libs/core/src/sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ namespace vortex
{
return 42;
}
}
}
2 changes: 1 addition & 1 deletion libs/core/tests/sample.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
TEST_CASE("Sample unit test", "[sample]")
{
REQUIRE(vortex::answer() == 42);
}
}
2 changes: 1 addition & 1 deletion samples/turb/basic/basic-sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ int main()
{
std::printf("This is answer to life, universe, and everything: %d.\n", vortex::answer());
return 0;
}
}

0 comments on commit 1b42e10

Please sign in to comment.