Skip to content

Commit

Permalink
Fixing build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SySyAli committed Dec 23, 2023
1 parent 6d43c5d commit 7aa09bb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up CMake, Ninja, and MSVC
uses: lukka/[email protected]
- name: Set up CMake
uses: actions/setup-cmake@v1
with:
cmake-version: '3.26'

- name: Configure CMake
# sqlite3 handled by CMake
Expand Down
14 changes: 7 additions & 7 deletions tests/main.cpp
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/**
* @file main.cpp
* @brief Test driver.
* @detailed The test driver. Through its associated tests, this driver aims to exercise all
* of the functionality of the AppTracker, AppEntry, and DatabaseManager classes in a clear and
* consistent way so that the class's interface and implementation can be easily inferred.
* @detailed The test driver. Through its associated tests, this driver aims to
* exercise all of the functionality of the AppTracker, AppEntry, and
* DatabaseManager classes in a clear and consistent way so that the class's
* interface and implementation can be easily inferred.
* @author Syed Ali
*/

#include <gtest/gtest.h>

int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}

0 comments on commit 7aa09bb

Please sign in to comment.