Skip to content

Exclude python 3.7 from macOS testing (#46) (#47) #23

Exclude python 3.7 from macOS testing (#46) (#47)

Exclude python 3.7 from macOS testing (#46) (#47) #23

name: Python package
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.10", "3.11"]
exclude:
- os: macos-latest
python-version: "3.7"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install six yapf
- name: Run test
run: |
python test/run_all.py