diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml index c303fcbe..cb90b418 100644 --- a/.github/workflows/test-workflow.yml +++ b/.github/workflows/test-workflow.yml @@ -1,7 +1,7 @@ name: test-workflow on: push: - branches: [ stable ] + branches: [ stable, develop ] jobs: build: diff --git a/test/main.cpp b/test/main.cpp index 0b9c331c..0d525eda 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -20,22 +20,22 @@ #include // fields -// #include "src/scalar_field_test.cpp" -// #include "src/vector_field_test.cpp" -// // mesh -// #include "src/element_test.cpp" -// #include "src/mesh_test.cpp" -// #include "src/point_location_test.cpp" -// // linear_algebra -// #include "src/kronecker_product_test.cpp" -// #include "src/vector_space_test.cpp" -// // finite_elements -// #include "src/fem_operators_test.cpp" -// #include "src/fem_pde_test.cpp" -// #include "src/integration_test.cpp" -// #include "src/lagrangian_basis_test.cpp" -// // optimization -// #include "src/optimization_test.cpp" +#include "src/scalar_field_test.cpp" +#include "src/vector_field_test.cpp" +// mesh +#include "src/element_test.cpp" +#include "src/mesh_test.cpp" +#include "src/point_location_test.cpp" +// linear_algebra +#include "src/kronecker_product_test.cpp" +#include "src/vector_space_test.cpp" +// finite_elements +#include "src/fem_operators_test.cpp" +#include "src/fem_pde_test.cpp" +#include "src/integration_test.cpp" +#include "src/lagrangian_basis_test.cpp" +// optimization +#include "src/optimization_test.cpp" //splines #include "src/spline_test.cpp"