Forgot to emit the state change event. #1840
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
check-compilation: | |
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 |