mirror of
https://github.com/rjNemo/underscore
synced 2026-06-11 21:16:50 +00:00
chore: code cov
This commit is contained in:
parent
c65e3ceba6
commit
75f5b7e5ed
2 changed files with 10 additions and 1 deletions
8
.github/workflows/unit-test.yml
vendored
8
.github/workflows/unit-test.yml
vendored
|
|
@ -25,4 +25,10 @@ jobs:
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -v ./...
|
run: go test -v ./...
|
||||||
- name: Upload coverage to Codecov
|
- name: Upload coverage to Codecov
|
||||||
run: bash <(curl -s https://codecov.io/bash)
|
- name: Upload coverage report
|
||||||
|
uses: codecov/codecov-action@v1.0.2
|
||||||
|
with:
|
||||||
|
token: 7106da3d-7479-471f-ae37-e3680b62063d
|
||||||
|
file: ./coverage.txt
|
||||||
|
flags: unittests
|
||||||
|
name: codecov-umbrella
|
||||||
|
|
@ -6,6 +6,9 @@
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
[](https://github.com/rjNemo/underscore/actions)
|
||||||
|
[](https://codecov.io/gh/rjNemo/underscore)
|
||||||
|
|
||||||
`underscore` is a `Go` library providing useful functional programming helpers without extending any built-in objects.
|
`underscore` is a `Go` library providing useful functional programming helpers without extending any built-in objects.
|
||||||
|
|
||||||
It is mostly a port from the `underscore.js` library based on generics brought by `go1.18`.
|
It is mostly a port from the `underscore.js` library based on generics brought by `go1.18`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue