ci: run notebooks in 'development' for PRs (#3188)

This commit is contained in:
Vadym Barda
2025-01-23 21:59:03 -05:00
committed by GitHub
parent ad51bfdf71
commit 48040d8ea5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
lib-version: ${{ (github.event_name == 'pull_request') && fromJSON('["development"]') || fromJSON('["development", "latest"]') }}
lib-version: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') && fromJSON('["development", "latest"]') || fromJSON('["development"]') }}
steps:
- uses: actions/checkout@v4