Skip to content

Commit 4238234

Browse files
committed
Update docs and github workflows
1 parent cc7d4b3 commit 4238234

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
command -v task
6363
6464
- name: "Run unit tests"
65-
- run: "task test:all"
65+
- run: "task test"

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff 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
3333
task 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

0 commit comments

Comments
 (0)