Skip to content

add to_string method #37

add to_string method

add to_string method #37

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Run_Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure CMAKE
run: cd tests/ && cmake -S . -B bin/Debug -DCMAKE_BUILD_TYPE=Debug
- name: Run Make
run: cmake --build tests/bin/Debug --clean-first
- name: Run Tests
run: tests/bin/Debug/BigInt_gtest --gtest_color=no
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}