From a5d216189dbb02541066fd648e151ce7d6566da8 Mon Sep 17 00:00:00 2001 From: Potuz Date: Wed, 3 Jul 2024 14:57:04 -0300 Subject: [PATCH] add CI workflow --- .circleci/config.yml | 13 +++++++++++++ .github/workflows/run-tests.yml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bf8b7ada8..7a95cc201 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index a56270030..b581338c1 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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