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:
parent
596d5795e9
commit
9eb68ee061
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue