Skip to content

gh workflow: exclude python 3.7-.3.9 for macos/arm64 #78

gh workflow: exclude python 3.7-.3.9 for macos/arm64

gh workflow: exclude python 3.7-.3.9 for macos/arm64 #78

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false # To see all versions that fail.
matrix:
os: ["ubuntu", "windows", "macos"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] # https://devguide.python.org/versions/#versions
exclude:
- os: macos
architecture: arm64

Check failure on line 16 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 16, Col: 11): Matrix exclude key 'architecture' does not match any key within the matrix
python: ["3.7"]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Prepare environment
run: |
python -m pip install --upgrade pip
- run: make depend
- run: make test