docs: Update docs and action.yml

This commit is contained in:
erezrokah 2023-06-02 14:56:37 +02:00
parent cb7e1d2c4a
commit 3c24beb7c8
No known key found for this signature in database
GPG key ID: EA610DCA9B4C557B
2 changed files with 3 additions and 2 deletions

View file

@ -181,7 +181,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: "1.20"
cache-key-prefix: build-cache-
cache-key-prefix: build-cache
- run: go build
test:
runs-on: ubuntu-latest
@ -190,7 +190,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: "1.20"
cache-key-prefix: test-cache-
cache-key-prefix: test-cache
- run: go test ./...
```