add CI workflow

This commit is contained in:
Potuz 2024-07-03 14:57:04 -03:00
parent 3d48e72570
commit a5d216189d
2 changed files with 14 additions and 1 deletions

View File

@ -194,6 +194,19 @@ jobs:
command: make citest fork=eip7594
- store_test_results:
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:
docker:
- image: circleci/node:10.16.3

View File

@ -72,7 +72,7 @@ jobs:
needs: [lint,codespell,table_of_contents]
strategy:
matrix:
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594"]
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594", "eip7732"]
steps:
- name: Checkout repository
uses: actions/checkout@v4