-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: report relevant changes from foundry artifacts (#44)
* ci: report relevant changes from foundry artifacts * fix: skip if no base * fix: test * fix: file name * fix: omg * fml * fix: add jest config * fix: test action * test: add useless test to diff * fix: add very minimal parser * fix: test gas diff * fix: update to shanghai * fix: update test * fix: remove lcov info * fix: update action * fix: update evm on zksync * empty * empty
- Loading branch information
Showing
5 changed files
with
40 additions
and
5 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,18 @@ | ||
name: PR Comment | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Test] | ||
types: | ||
- completed | ||
|
||
permissions: | ||
actions: read | ||
issues: write | ||
checks: read | ||
statuses: read | ||
pull-requests: write | ||
|
||
jobs: | ||
comment: | ||
uses: bgd-labs/github-workflows/.github/workflows/comment.yml@main |
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
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
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,12 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
import 'forge-std/Test.sol'; | ||
import {ChainHelpers} from '../src/contracts/utils/ChainHelpers.sol'; | ||
|
||
contract TestChainHelpers is Test { | ||
function test_selectChain_shouldRevert() external { | ||
vm.expectRevert(); | ||
ChainHelpers.selectChain(vm, 0); | ||
} | ||
} |
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