From 04871936e2c20c9a2429a8543f72114ff36d62e9 Mon Sep 17 00:00:00 2001 From: lekcyjna123 <34948061+lekcyjna123@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:05:12 +0100 Subject: [PATCH] Add CI runs for #604 (#608) --- .github/workflows/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 90b928b38..5ee446967 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -263,6 +263,12 @@ jobs: . venv/bin/activate scripts/run_tests.py -a regression + - name: Check regression with pysim + run: | + . venv/bin/activate + ./scripts/run_tests.py -c 1 -a -b pysim regression + + unit-test: name: Run unit tests runs-on: ubuntu-latest @@ -292,6 +298,9 @@ jobs: - name: Check traces and profiles run: ./scripts/run_tests.py -t -p -c 1 TestCore + - name: Check listing tests + run: ./scripts/run_tests.py -l + lint: name: Check code formatting and typing runs-on: ubuntu-latest