Skip to content

Commit

Permalink
chore: ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik committed Dec 19, 2024
1 parent 9410bb1 commit 75bcde2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@ jobs:
run: |
npx hardhat test
- name: Setup LCOV
if: github.ref_name != 'main'
uses: hrishikesh-kadam/setup-lcov@v1

- name: Run Forge Coverage
if: github.ref_name != 'main'
run: |
Expand Down Expand Up @@ -176,16 +172,6 @@ jobs:
echo "$ipfs_hashes" | sed 's/^/"/;s/$/"/' | paste -sd ',' > ipfs_hashes.txt
fi
- name: Report code coverage
if: github.event_name == 'pull_request'
uses: zgosalvez/github-actions-report-lcov@4.1.21
continue-on-error: true
with:
coverage-files: lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true

- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v5

Expand Down
19 changes: 19 additions & 0 deletions lib/forge-std/src/Vm.sol

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/forge-std/test/Vm.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {Vm, VmSafe} from "../src/Vm.sol";
// added to or removed from Vm or VmSafe.
contract VmTest is Test {
function test_VmInterfaceId() public pure {
assertEq(type(Vm).interfaceId, bytes4(0xbe425eb2), "Vm");
assertEq(type(Vm).interfaceId, bytes4(0xdb28dd7b), "Vm");
}

function test_VmSafeInterfaceId() public pure {
Expand Down

0 comments on commit 75bcde2

Please sign in to comment.