Skip to content

Merge pull request #76 from takluyver/python-ge-3.7 #29

Merge pull request #76 from takluyver/python-ge-3.7

Merge pull request #76 from takluyver/python-ge-3.7 #29

Workflow file for this run

name: Test
on: [push, pull_request]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }} / ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
pip install pytest pytest-timeout
- name: Run tests
run: pytest --timeout 60 -v