Skip to content

Commit 7ec4128

Browse files
committed
fix test
1 parent ec0537d commit 7ec4128

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ jobs:
3434
go mod download
3535
- name: Run Unit Tests
3636
run: |
37-
go test -tags noasm -race -covermode atomic -coverprofile=profile.cov ./...
38-
go test -race ./...
37+
go test -tags noasm -race -covermode atomic -coverprofile=profile.cov .
3938
- name: Upload Coverage
4039
uses: shogo82148/actions-goveralls@v1
4140
with:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ for _, r := range results {
7474
First, clone the repository and its submodules with the following commands. The `--recurse-submodules` flag is used to clone the `ggml` submodule, which is a header-only library for matrix operations.
7575

7676
```bash
77-
git clone --recurse-submodules https://github.com/ggerganov/llama.cpp
78-
cd llama.cpp
77+
git submodule update --init --recursive
78+
git lfs pull
7979
```
8080

8181
### Compile on Linux

0 commit comments

Comments
 (0)