Skip to content

Commit

Permalink
fix: github workflow forge build
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdubey521 committed Oct 17, 2023
1 parent c2ed21c commit 7e0b7e6
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 14 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/push_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout
uses: 'actions/checkout@master'
uses: "actions/checkout@master"
- name: Set Node.js
uses: actions/setup-node@v1
with:
Expand All @@ -20,8 +20,7 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile && yarn build
- name: Lint sources
run:
yarn run lint
run: yarn run lint

unit_test:
name: Unit tests
Expand All @@ -32,34 +31,39 @@ jobs:

steps:
- name: Checkout
uses: 'actions/checkout@master'
uses: "actions/checkout@master"

- name: Set Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Create a fake .secret file
run: echo "primary twist rack vendor diagram image used route theme frown either will" > .secret

- name: Install dependencies
run: yarn install --frozen-lockfile && yarn build

- name: Run Hardhat Tests
run: yarn test

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Configure SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Install dependencies
run: yarn install --frozen-lockfile && yarn build

- name: Run Forge build
run: |
forge --version
forge build --sizes
id: forge-build

- name: Run Hardhat Tests
run: yarn test

- name: Run Forge tests
run: |
forge test -vvv
id: forge-test
forge test -vvv
id: forge-test
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import {ISecurityPolicyPlugin} from "contracts/smart-account/interfaces/modules/ISecurityPolicyManagerPlugin.sol";

interface IERC7484SecurityPolicyPlugin is ISecurityPolicyPlugin {
struct PolicyDetails {
uint256 x;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

// import {ISecurityPolicyPlugin} from "contracts/smart-account/interfaces/modules/ISecurityPolicyManagerPlugin.sol";

/// @title ERC7484 Security Policy Plugin
/// @author @ankurdubey521
/// @dev Second Order Plugin to the Security Policy Manager Plugin, enforces checks as defined by ERC7484
// https://github.com/ethereum/EIPs/blob/231f3e25889dae1c7d21b4419fa27cee79a4ca42/EIPS/eip-7484.mdcontract

contract ERC7484SecurityPolicyPlugin {
function foo() external pure returns (uint256) {
return 1;
}
}

0 comments on commit 7e0b7e6

Please sign in to comment.