fix: fix main ci only trigger linux64 platform (#187)

* fix: fix main ci only trigger linux64 platform

* Fix YAML syntax for build-and-test job name
This commit is contained in:
Cuiys 2026-02-28 16:46:07 +08:00 committed by GitHub
parent 596d5795e9
commit 9eb68ee061
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -70,14 +70,13 @@ jobs:
# Build and test matrix (parallel execution)
build-and-test:
name: Build & Test (${{ matrix.platform }}, py${{ matrix.python-version }})
name: Build & Test (${{ matrix.platform }})
needs: lint
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
include:
- os: macos-15
platform: macos-arm64
@ -98,7 +97,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'