add CI workflow
This commit is contained in:
parent
3d48e72570
commit
a5d216189d
|
@ -194,6 +194,19 @@ jobs:
|
||||||
command: make citest fork=eip7594
|
command: make citest fork=eip7594
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: tests/core/pyspec/test-reports
|
path: tests/core/pyspec/test-reports
|
||||||
|
test-eip7732:
|
||||||
|
docker:
|
||||||
|
- image: circleci/python:3.9
|
||||||
|
working_directory: ~/specs-repo
|
||||||
|
steps:
|
||||||
|
- restore_cache:
|
||||||
|
key: v3-specs-repo-{{ .Branch }}-{{ .Revision }}
|
||||||
|
- restore_pyspec_cached_venv
|
||||||
|
- run:
|
||||||
|
name: Run py-tests
|
||||||
|
command: make citest fork=eip7732
|
||||||
|
- store_test_results:
|
||||||
|
path: tests/core/pyspec/test-reports
|
||||||
table_of_contents:
|
table_of_contents:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node:10.16.3
|
- image: circleci/node:10.16.3
|
||||||
|
|
|
@ -72,7 +72,7 @@ jobs:
|
||||||
needs: [lint,codespell,table_of_contents]
|
needs: [lint,codespell,table_of_contents]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594"]
|
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594", "eip7732"]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in New Issue