Skip to content

Drop python 3.7 test for macOS #69

Drop python 3.7 test for macOS

Drop python 3.7 test for macOS #69

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7','3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- os: macos-latest
version: '3.7'

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 13): Matrix exclude key 'version' does not match any key within the matrix
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install --upgrade pip
pip install .
- name: Test
run: |
python test.py