[問題追加] Addition / Multiplication of Big Integers #110
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@v3 | |
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" |