Skip to content

Adding hardhat for deployment scripts (testnet and mainnet) #72

Adding hardhat for deployment scripts (testnet and mainnet)

Adding hardhat for deployment scripts (testnet and mainnet) #72

Workflow file for this run

name: test
on: pull_request
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Forge Dependencies
run: |
forge install openzeppelin-contracts-upgradeable=OpenZeppelin/[email protected] --no-commit
id: install dependency contracts

Check failure on line 28 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 28, Col: 13): The identifier 'install dependency contracts' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv --gas-report
id: test
- name: Run Forge coverage
run: forge coverage
id: coverage