Skip to content

Commit f305235

Browse files
authored
docs: mention CI in the contribution guide (#97)
* docs: mention CI in the contribution guide * docs: fix indentation
1 parent 3f721d8 commit f305235

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ Adding a new solver should not take more than a few hundred lines of code, tests
1717
You can generally reuse data structures provided by the library for which you are creating a wrapper.
1818
- implement a function named after your solver that takes an [`UnsolvedProblem`](https://docs.rs/good_lp/latest/good_lp/variable/struct.UnsolvedProblem.html) and returns the struct you defined above.
1919
- implement the [`SolverModel`](https://docs.rs/good_lp/latest/good_lp/index.html#reexport.SolverModel) trait for your new problem type.
20-
- add your solver to `lib.rs` and to the `all_default_solvers` feature in Cargo.toml.
21-
- open a [pull request](https://github.com/rust-or/good_lp/pulls)
20+
- add your solver to `lib.rs` and to the `all_default_solvers` feature in Cargo.toml.
21+
- run the tests of your solver [in the CI setup]([url](https://github.com/rust-or/good_lp/blob/main/.github/workflows/rust.yml))
22+
- open a [pull request](https://github.com/rust-or/good_lp/pulls)
2223

2324
## Dev Container Setup
2425

0 commit comments

Comments
 (0)