Skip to content

Commit 2f96a64

Browse files
committed
Update README
1 parent 621c3e0 commit 2f96a64

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919

2020
- uses: mlugg/setup-zig@v1
2121

22-
- run: zig build test --summary all
23-
- run: zig build
24-
2522
- uses: actions/setup-python@v5
2623
with:
2724
python-version: '3.13'
2825
cache: 'pip'
2926

27+
- run: zig build
28+
- run: zig build unit-tests --summary all
29+
3030
- run: pip install -r tests/requirements.txt
3131
- run: pytest -v tests/
3232

README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,13 @@ Building from source code:
1414

1515
zig build
1616

17-
Running server:
18-
19-
zig build run -- --dir /tmp/fpindex --port 8080 --log-level debug
20-
21-
Running unit tests:
17+
Running tests:
2218

2319
zig build test --summary all
2420

25-
Running integration tests:
21+
Running server:
2622

27-
pytest -vv tests/
23+
zig build run -- --dir /tmp/fpindex --port 8080 --log-level debug
2824

2925
## HTTP API
3026

0 commit comments

Comments
 (0)