Skip to content

Commit

Permalink
ci: fix matrix exclude for solidity packages (#3255)
Browse files Browse the repository at this point in the history
* ci: fix exclude keyword

* ci: try adding no-op benchmark tests

* Revert "ci: fix exclude keyword"

This reverts commit 4b869aa.
  • Loading branch information
ChiTimesChi authored Oct 9, 2024
1 parent 847600b commit 768209d
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 768209d

Please sign in to comment.