From e1140f4fad53f7d2bbe2d14483dc616bae412e0e Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Thu, 23 Jan 2025 22:26:32 -0500 Subject: [PATCH] ci: always test notebooks on all library versions (#3191) --- .github/workflows/run_notebooks.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_notebooks.yml b/.github/workflows/run_notebooks.yml index 91084cb13c..bcf562e8f1 100644 --- a/.github/workflows/run_notebooks.yml +++ b/.github/workflows/run_notebooks.yml @@ -16,7 +16,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - lib-version: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') && fromJSON('["development", "latest"]') || fromJSON('["development"]') }} + lib-version: + - "development" + - "latest" steps: - uses: actions/checkout@v4