added tests for derivatives & fixed bug in sinus deriv #29
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: | | |
cd ./tests/ | |
g++ BaseStore_Tests.cpp -std=c++20 -o BaseStore_Tests | |
g++ BinaryOperations_Tests.cpp -std=c++20 -o BinaryOperations_Tests | |
g++ Coca_Tests.cpp -std=c++20 -o CocaTests | |
g++ Colon_Tests.cpp -std=c++20 -o Colon_Tests | |
g++ Concepts_Tests.cpp -std=c++20 -o Concepts_Tests | |
g++ Derivatives_Tests.cpp -std=c++20 -o Derivatives_Tests | |
g++ Helper_Tests.cpp -std=c++20 -o Helper_Tests | |
g++ Matrix_Tests.cpp -std=c++20 -o Matrix_Tests | |
g++ Rep_Tests.cpp -std=c++20 -o Rep_Tests | |
g++ Subsetting_Tests.cpp -std=c++20 -o Subsetting_Tests | |
g++ Unary_Tests.cpp -std=c++20 -o Unary_Tests | |
g++ Vector_Tests.cpp -std=c++20 -o Vector_Tests | |
g++ Borrow_Tests.cpp -std=c++20 -o Borrow_Tests | |
g++ CMR_Tests.cpp -std=c++20 -o CMR_Tests | |
- name: Run tests | |
run: | | |
cd ./tests/ | |
./BaseStore_Tests | |
./BinaryOperations_Tests | |
./CocaTests | |
./Colon_Tests | |
./Concepts_Tests | |
./Derivatives_Tests | |
./Helper_Tests | |
./Matrix_Tests | |
./Rep_Tests | |
./Subsetting_Tests | |
./Unary_Tests | |
./Vector_Tests | |
./Borrow_Tests | |
./CMR_Tests |