Skip to content

Commit 3196f32

Browse files
authored
Add testgen badge to readme (#3933)
1 parent 3162c91 commit 3196f32

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/generate_vectors.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@ jobs:
5252
cp -r presets/ ../consensus-spec-tests/presets
5353
cp -r configs/ ../consensus-spec-tests/configs
5454
find . -type d -empty -delete
55+
- name: Check for errors
56+
run: |
57+
if grep -q "\[ERROR\]" consensustestgen.log; then
58+
echo "There is an error in the log"
59+
exit 1
60+
fi
61+
if find . -type f -name "INCOMPLETE" | grep -q "INCOMPLETE"; then
62+
echo "There is an INCOMPLETE file"
63+
exit 1
64+
fi
5565
- name: Archive configurations
5666
run: |
5767
cd consensus-spec-tests

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This repository hosts the current Ethereum proof-of-stake specifications. Discus
88

99
## Specs
1010

11-
[![GitHub release](https://img.shields.io/github/v/release/ethereum/consensus-specs)](https://github.com/ethereum/consensus-specs/releases/) [![PyPI version](https://badge.fury.io/py/eth2spec.svg)](https://badge.fury.io/py/eth2spec)
11+
[![GitHub release](https://img.shields.io/github/v/release/ethereum/consensus-specs)](https://github.com/ethereum/consensus-specs/releases/) [![PyPI version](https://badge.fury.io/py/eth2spec.svg)](https://badge.fury.io/py/eth2spec) [![testgen](https://github.com/ethereum/consensus-specs/actions/workflows/generate_vectors.yml/badge.svg?branch=dev&event=schedule)](https://github.com/ethereum/consensus-specs/actions/workflows/generate_vectors.yml)
1212

1313
Core specifications for Ethereum proof-of-stake clients can be found in [specs](specs/). These are divided into features.
1414
Features are researched and developed in parallel, and then consolidated into sequential upgrades when ready.

0 commit comments

Comments
 (0)