Skip to content

Commit

Permalink
chore: Add cargo build and build guide (#111)
Browse files Browse the repository at this point in the history
* chore: Add cargo build and build guide

* Make guide more concise
  • Loading branch information
manuzhang authored Dec 7, 2023
1 parent 3506ef7 commit ffa3a5c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ $ cargo version
cargo 1.69.0 (6e9a83356 2023-04-12)
```

## Build

* To compile the project: `make build`
* To check code styles: `make check`
* To run tests: `make test`

## Code of Conduct

We expect all community members to follow our [Code of Conduct](https://www.apache.org/foundation/policies/conduct.html).
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
# specific language governing permissions and limitations
# under the License.

build:
cargo build

check-fmt:
cargo fmt --all -- --check

Expand Down

0 comments on commit ffa3a5c

Please sign in to comment.