File tree Expand file tree Collapse file tree 2 files changed +47
-30
lines changed Expand file tree Collapse file tree 2 files changed +47
-30
lines changed Original file line number Diff line number Diff line change 82
82
- name : Build html documentation with mkdocs via tox
83
83
run : uvx --with=tox-uv tox -e mkdocs
84
84
85
+ changelog :
86
+ name : Validate changelog formatting
87
+ runs-on : ubuntu-latest
88
+ steps :
89
+ - name : Checkout ethereum/execution-spec-tests
90
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
91
+ - name : Check bullet points end with periods
92
+ run : |
93
+ if grep -P "^-.*[^\.]$" docs/CHANGELOG.md; then
94
+ echo "❌ Found bullet points without periods (see above)"
95
+ echo "💡 All bullet points should end with a period"
96
+ exit 1
97
+ else
98
+ echo "✅ All bullet points properly end with periods"
99
+ fi
100
+
85
101
pytest_framework :
86
102
name : Run unit tests, ${{ matrix.os }}, ${{ matrix.python }}
87
103
runs-on : ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments