Skip to content

Drop Python 3.7 support and fix test workflows #60

Drop Python 3.7 support and fix test workflows

Drop Python 3.7 support and fix test workflows #60

Workflow file for this run

name: Test with pip
on:
- pull_request
- workflow_dispatch
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ${{ matrix.os }}
steps:
- name: Get apptools source
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and local packages
run: |
python -m pip install .[h5,preferences]
- name: Run tests
run: |
mkdir testdir
cd testdir
python -m unittest discover -v apptools