File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Run tests and upload coverage
2
+
3
+ on :
4
+ push
5
+
6
+ jobs :
7
+ coverage :
8
+ name : Report coverage
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v4
13
+ with :
14
+ fetch-depth : 0
15
+
16
+ - name : Set up Node
17
+ uses : actions/setup-node@v4
18
+
19
+ - name : Install dependencies
20
+ run : npm install
21
+
22
+ - name : Run tests
23
+ run : npm run coverage
24
+
25
+ - name : Upload results to Codecov
26
+ uses : codecov/codecov-action@v4
27
+ with :
28
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 1
1
# blake2b-solidity
2
2
3
+ [ ![ codecov] ( https://codecov.io/github/dhl/blake2b-solidity/graph/badge.svg?token=4WOC5GEC7H )] ( https://codecov.io/github/dhl/blake2b-solidity )
4
+
3
5
` blake2b-solidity ` is a high-performance Solidity implementation of the [ BLAKE2b] ( https://www.blake2.net/ ) hash
4
6
function.
5
7
You can’t perform that action at this time.
0 commit comments