From 903f65d2cbfcf14d5d3f07278b67f36ccd1a1d2e Mon Sep 17 00:00:00 2001 From: eutopian Date: Fri, 15 Nov 2024 11:20:47 -0500 Subject: [PATCH] tweak coverage --- .github/workflows/solidity-foundry.yml | 2 +- .github/workflows/solidity-hardhat.yml | 1 - contracts/src/v0.8/workflow/dev/WorkflowRegistry.sol | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/solidity-foundry.yml b/.github/workflows/solidity-foundry.yml index 5f89dcccd22..efbdd77ccb5 100644 --- a/.github/workflows/solidity-foundry.yml +++ b/.github/workflows/solidity-foundry.yml @@ -40,7 +40,7 @@ jobs: { "name": "shared", "setup": { "run-coverage": true, "extra-coverage-params": "--no-match-path='*CallWithExactGas*' --ir-minimum", "min-coverage": 32.6, "run-gas-snapshot": true, "run-forge-fmt": false }}, { "name": "transmission", "setup": { "run-coverage": true, "min-coverage": 61.5, "run-gas-snapshot": true, "run-forge-fmt": false }}, { "name": "vrf", "setup": { "run-coverage": false, "min-coverage": 98.5, "run-gas-snapshot": false, "run-forge-fmt": false }}, - { "name": "workflow", "setup": { "run-coverage": true, "extra-coverage-params": "--ir-minimum", "min-coverage": 75.0, "run-gas-snapshot": false, "run-forge-fmt": true }} + { "name": "workflow", "setup": { "run-coverage": true, "extra-coverage-params": "--ir-minimum", "min-coverage": 65.0, "run-gas-snapshot": false, "run-forge-fmt": true }} ] EOF diff --git a/.github/workflows/solidity-hardhat.yml b/.github/workflows/solidity-hardhat.yml index b747215e3e0..7283e17e13f 100644 --- a/.github/workflows/solidity-hardhat.yml +++ b/.github/workflows/solidity-hardhat.yml @@ -26,7 +26,6 @@ jobs: filters: | src: - 'contracts/src/!(v0.8/(ccip|functions|keystone|l2ep|liquiditymanager|llo-feeds|transmission|vrf|workflow)/**)/**/*' - - 'contracts/src/!(v0.8/workflow/**)/*' - 'contracts/test/**/*' - 'contracts/package.json' - 'contracts/pnpm-lock.yaml' diff --git a/contracts/src/v0.8/workflow/dev/WorkflowRegistry.sol b/contracts/src/v0.8/workflow/dev/WorkflowRegistry.sol index e6ec6aca0f1..b0b6a120f86 100644 --- a/contracts/src/v0.8/workflow/dev/WorkflowRegistry.sol +++ b/contracts/src/v0.8/workflow/dev/WorkflowRegistry.sol @@ -13,7 +13,7 @@ contract WorkflowRegistry is Ownable2StepMsgSender, ITypeAndVersion { using EnumerableSet for EnumerableSet.AddressSet; using EnumerableSet for EnumerableSet.UintSet; - string public constant override typeAndVersion = "WorkflowRegistry 1.0.0"; + string public constant override typeAndVersion = "WorkflowRegistry 1.0.0-dev"; uint8 private constant MAX_WORKFLOW_NAME_LENGTH = 64; uint8 private constant MAX_URL_LENGTH = 200; uint8 private constant MAX_PAGINATION_LIMIT = 100;