From 25c08e68e6ea6fda8a4b962e225b3fa80f18f168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dino=20Pa=C4=8Dandi?= <3002868+Dinonard@users.noreply.github.com> Date: Wed, 8 Nov 2023 15:05:15 +0100 Subject: [PATCH] License check fix (#1082) * License check fix * Exclude covereage * Review comment fix --- .github/license-check/config.json | 1 + .github/workflows/coverage.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/license-check/config.json b/.github/license-check/config.json index ffaa32c450..2a02f38d86 100644 --- a/.github/license-check/config.json +++ b/.github/license-check/config.json @@ -7,6 +7,7 @@ "pallets/collator-selection/**", "pallets/custom-signatures/**", "precompiles/utils/**", + "precompiles/utils_v2/**", "vendor/**" ], "license": "./.github/license-check/headers/HEADER-GNUv3" diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index c029940d61..399cd52da9 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -47,7 +47,7 @@ jobs: uses: actions-rs/tarpaulin@v0.1 with: version: 0.22.0 - args: '--workspace -e astar-collator xcm-tools local-runtime shibuya-runtime shiden-runtime astar-runtime integration-tests --exclude-files vendor/* bin/* runtime/* tests/* **/mock.rs **/weights.rs' + args: '--workspace -e astar-collator xcm-tools local-runtime shibuya-runtime shiden-runtime astar-runtime integration-tests --exclude-files vendor/* bin/* runtime/* tests/* **/mock.rs **/weights.rs precompiles/utils_v2/*' out-type: Xml - name: Code Coverage Summary Report