Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit e050570

Browse files
authored
Merge pull request #35 from aave/feat/incentives-v2
Incentives Controller V2 MultiToken
2 parents faf871c + a1d2c50 commit e050570

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+5644
-439
lines changed

.github/workflows/node.js.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ jobs:
3636
NODE_AUTH_TOKEN: ${{ secrets.PAT_PACKAGES_REGISTRY_READ_ONLY }}
3737
- name: Test
3838
run: npm run test
39-
# - name: Coverage
40-
# run: npm run coverage
41-
# - uses: codecov/codecov-action@v1
42-
# with:
43-
# fail_ci_if_error: true
39+
- name: Coverage
40+
run: npm run coverage
41+
- uses: codecov/codecov-action@v1
42+
with:
43+
fail_ci_if_error: true
44+
token: ${{ secrets.CODECOV_TOKEN }}

.solcover.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
const cp = require('child_process');
22

33
module.exports = {
4-
skipFiles: ['GreeterLibrary.sol'],
4+
skipFiles: [
5+
'./mocks',
6+
'./misc/UiIncentiveDataProvider.sol',
7+
'./misc/UiPoolDataProvider.sol',
8+
'./misc/WalletBalanceProvider.sol',
9+
'./incentives-v2/interfaces/',
10+
'./misc/interfaces/',
11+
],
512
onCompileComplete: function () {
613
console.log('onCompileComplete hook');
714
cp.execSync('. ./setup-test-env.sh', { stdio: 'inherit' });

0 commit comments

Comments
 (0)