Skip to content

Commit ffa3a5c

Browse files
authored
chore: Add cargo build and build guide (#111)
* chore: Add cargo build and build guide * Make guide more concise
1 parent 3506ef7 commit ffa3a5c

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@ $ cargo version
108108
cargo 1.69.0 (6e9a83356 2023-04-12)
109109
```
110110

111+
## Build
112+
113+
* To compile the project: `make build`
114+
* To check code styles: `make check`
115+
* To run tests: `make test`
116+
111117
## Code of Conduct
112118

113119
We expect all community members to follow our [Code of Conduct](https://www.apache.org/foundation/policies/conduct.html).

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
build:
19+
cargo build
20+
1821
check-fmt:
1922
cargo fmt --all -- --check
2023

0 commit comments

Comments
 (0)