We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3506ef7 commit ffa3a5cCopy full SHA for ffa3a5c
CONTRIBUTING.md
@@ -108,6 +108,12 @@ $ cargo version
108
cargo 1.69.0 (6e9a83356 2023-04-12)
109
```
110
111
+## Build
112
+
113
+* To compile the project: `make build`
114
+* To check code styles: `make check`
115
+* To run tests: `make test`
116
117
## Code of Conduct
118
119
We expect all community members to follow our [Code of Conduct](https://www.apache.org/foundation/policies/conduct.html).
Makefile
@@ -15,6 +15,9 @@
15
# specific language governing permissions and limitations
16
# under the License.
17
18
+build:
19
+ cargo build
20
21
check-fmt:
22
cargo fmt --all -- --check
23
0 commit comments