Skip to content

Commit

Permalink
ci: try adding no-op benchmark tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Oct 9, 2024
1 parent 4b869aa commit 7c298ac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/contracts-core/test/GasBenchmark.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {Test} from "forge-std/Test.sol";

/// @notice No gas benchmark is required for contracts-core
contract GasBenchmarkTest is Test {
// solhint-disable-next-line no-empty-blocks
function testGasBenchmark() public {}
}
10 changes: 10 additions & 0 deletions packages/solidity-devops/test/GasBenchmark.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {Test} from "forge-std/Test.sol";

/// @notice No gas benchmark is required for solidity-devops
contract GasBenchmarkTest is Test {
// solhint-disable-next-line no-empty-blocks
function testGasBenchmark() public {}
}

0 comments on commit 7c298ac

Please sign in to comment.