Skip to content

refactor: note minimum avg coverage #33

refactor: note minimum avg coverage

refactor: note minimum avg coverage #33

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