File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 6262 command -v task
6363
6464 - name : " Run unit tests"
65- - run : " task test:all "
65+ - run : " task test"
Original file line number Diff line number Diff line change @@ -28,15 +28,30 @@ git submodule update --init --recursive
2828```
2929
3030## Building
31- To build all targets in ` ystdlib-cpp ` :
31+ To build all targets:
3232``` shell
3333task build:all
3434```
3535
36+ To build the global unit test target:
37+ ``` shell
38+ task build:unit-test
39+ ```
40+
41+ To build unit tests for a specific library:
42+ ``` shell
43+ task build:unit-test -- < lib_name>
44+ ```
45+
3646## Testing
37- To run all unit tests in ` ystdlib-cpp ` :
47+ To build and run all unit tests:
48+ ``` shell
49+ task test
50+ ```
51+
52+ To build and run unit tests for a specific library:
3853``` shell
39- task test:all
54+ task test -- < lib_name >
4055```
4156
4257## Linting
You can’t perform that action at this time.
0 commit comments