[test] add correct.cpp to the solution of convolution_mod_large #789
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unittest(C++ lib) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
util-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: run unittest | |
run: | | |
cd test/cpp_unittest | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Debug | |
make | |
ctest -VV | |
env: | |
GTEST_COLOR: "1" |