Skip to content

Updated upgrade script #148

Updated upgrade script

Updated upgrade script #148

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / Openfort Test Contracts

Invalid workflow file

The workflow is not valid. .github/workflows/run-tests.yml: The value '0x0510000000000000000000000000000000000000000000000000000000000051' on line 28 and column 25 is invalid for the type 'tag:yaml.org,2002:int'
push:
branches:
- main
name: Openfort Test Contracts
jobs:
check:
name: Foundry tests
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 dependencies
run: yarn
- name: Local tests
env: # Or as an environment variable
ENTRY_POINT_ADDRESS: ${{ vars.ENTRY_POINT_ADDRESS }}
VERSION_SALT: 0x0510000000000000000000000000000000000000000000000000000000000051
run: forge test --force -vvv --match-test test
- name: Fork tests (Goerli)
env: # Or as an environment variable
ENTRY_POINT_ADDRESS: ${{ vars.ENTRY_POINT_ADDRESS }}
GOERLI_RPC: ${{ secrets.GOERLI_RPC }}
VERSION_SALT: 0x0510000000000000000000000000000000000000000000000000000000000051
run: forge test --force -vvv --match-test test --fork-url $GOERLI_RPC