Skip to content

Merge pull request #16 from pylhc/sps_remove_trailing_planes #130

Merge pull request #16 from pylhc/sps_remove_trailing_planes

Merge pull request #16 from pylhc/sps_remove_trailing_planes #130

Workflow file for this run

# Runs all tests not flagged as "extended" with a pytest marker
name: Tests
defaults:
run:
shell: bash
on: [push] # Runs on all push events to any branch
jobs:
tests:
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-latest, windows-latest]
# Make sure to escape 3.10 with quotes so it doesn't get interpreted as float 3.1 by GA's parser
python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/setup.py'
- name: Upgrade pip, setuptools and wheel
run: python -m pip install --upgrade pip setuptools wheel
- name: Install package
run: python -m pip install '.[test]'
- name: Run basic tests
run: python -m pytest