From 1c3dacce7d20309e8e05cff02be70b4f58f7f221 Mon Sep 17 00:00:00 2001 From: sfmig <33267254+sfmig@users.noreply.github.com> Date: Tue, 23 Apr 2024 10:29:53 +0100 Subject: [PATCH] add benchmark check after tests --- .github/workflows/test_and_deploy.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index eeb68bb8..cb87ef6b 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -43,10 +43,16 @@ jobs: - os: windows-latest python-version: "3.10" steps: - - uses: neuroinformatics-unit/actions/test@v2 + - name: Run tests + uses: neuroinformatics-unit/actions/test@v2 with: python-version: ${{ matrix.python-version }} - secret-codecov-token: ${{ secrets.CODECOV_TOKEN }} + + - name: Check benchmarks + run: | + pip install --upgrade pip + pip install asv + asv check -v -E existing build_sdist_wheels: name: Build source distribution