Skip to content

DRAFT: Use pyproject.toml to define PyPI package #178

DRAFT: Use pyproject.toml to define PyPI package

DRAFT: Use pyproject.toml to define PyPI package #178

Workflow file for this run

name: Run Python Unit Tests
on:
pull_request:
branches:
- master
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- windows-2022
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Install Python 3
uses: actions/[email protected]
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
check-latest: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[dev]
- name: Test with nose2
run: nose2