Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/install-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
schedule:
- cron: '0 6 * * *' # 6 AM UTC daily
workflow_dispatch: # Allows manual triggering from GitHub UI
merge_group:

jobs:
test-pip:
Expand Down Expand Up @@ -44,9 +45,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# For push/PR: only ubuntu. For schedule/manual: full matrix
os: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') && fromJSON('["ubuntu-latest"]') || fromJSON('["ubuntu-latest","macos-latest"]') }}
python-version: ${{ github.event_name == 'pull_request' && fromJSON('["3.12"]') || fromJSON('["3.11","3.12","3.13"]') }}
# For push/PR/merge_group: only ubuntu. For schedule/manual: full matrix
os: ${{ (github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'merge_group') && fromJSON('["ubuntu-latest"]') || fromJSON('["ubuntu-latest","macos-latest"]') }}
python-version: ${{ (github.event_name == 'pull_request' || github.event_name == 'merge_group') && fromJSON('["3.12"]') || fromJSON('["3.11","3.12","3.13"]') }}

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ name: Pre-commit
on:
pull_request:
branches: [main, v2.0-refactor]
merge_group:

jobs:
pre-commit:
Expand All @@ -38,4 +39,4 @@ jobs:
python -m pip install --upgrade pip
pip install -e . --group dev

- uses: pre-commit/[email protected]
- uses: pre-commit/[email protected]