-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fix matrix exclude for solidity packages (#3255)
* ci: fix exclude keyword * ci: try adding no-op benchmark tests * Revert "ci: fix exclude keyword" This reverts commit 4b869aa.
- Loading branch information
1 parent
847600b
commit 768209d
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {} | ||
} |