From 9eb68ee061c34528e282c53b355d39fd92556503 Mon Sep 17 00:00:00 2001 From: Cuiys Date: Sat, 28 Feb 2026 16:46:07 +0800 Subject: [PATCH] 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 --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e9eab6..abfd4d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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'