Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,38 +98,6 @@ jobs:
- name: Check unused imports
run: python3 script/utils/fix_imports.py --check-unused

# halmos:
# runs-on: ubuntu-latest

# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# submodules: recursive

# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: 3.13
# architecture: x64

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

# - name: Install `setuptools`
# run: pip install setuptools

# - name: Install Halmos
# run: pip install git+https://github.com/a16z/halmos.git@main

# - name: Show the Halmos version
# run: halmos --version

# - name: Run Halmos symbolic tests
# run: halmos --contract TestMessageLibIdentities --function test

anvil-deploy:
runs-on: ubuntu-latest
permissions:
Expand Down
43 changes: 43 additions & 0 deletions script/fv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: "FV"

on:
push:
paths:
- src/misc/libraries/**
- test/misc/unit/libraries/**

env:
FOUNDRY_PROFILE: ci

jobs:
halmos:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.13
architecture: x64

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

- name: Install `setuptools`
run: pip install setuptools

- name: Install Halmos
run: pip install git+https://github.com/a16z/halmos.git@main

- name: Show the Halmos version
run: halmos --version

- name: Run Halmos symbolic tests
run: halmos --match-test '^symbolic|^testSymbolic' -vv
Loading
Loading