Skip to content

fix: certora scripts #43

fix: certora scripts

fix: certora scripts #43

Workflow file for this run

name: Docker Compilation
on: [push]
jobs:
check-compilation:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build and validate
if: github.event_name == 'push'
run: |
make docker
docker run -v `pwd`:/build -w /build --rm -i eigenlayer-contracts:latest bash -c "make gha"
if [ ! -z "$(git status --porcelain)" ]; then git diff; git status; exit 1; fi