Skip to content

Commit

Permalink
github actions triggered on push also on develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
AlePalu committed Aug 10, 2023
1 parent 073d991 commit 6784e39
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: test-workflow
on:
push:
branches: [ stable ]
branches: [ stable, develop ]

jobs:
build:
Expand Down
32 changes: 16 additions & 16 deletions test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
#include <Eigen/Sparse>

// 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"

Expand Down

0 comments on commit 6784e39

Please sign in to comment.