Skip to content

IT-6150: switch PyPI publishing to trusted publishing (OIDC) #154

IT-6150: switch PyPI publishing to trusted publishing (OIDC)

IT-6150: switch PyPI publishing to trusted publishing (OIDC) #154

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', '3.12']
runs-on: ${{ matrix.os }}
steps:
- name: Get apptools source
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and local packages
run: python -m pip install .[gui,h5,preferences]
if: (matrix.os != 'macos-latest') || ((matrix.python-version != '3.8') && (matrix.python-version != '3.9'))
- name: Install dependencies and local packages (exclude h5)
run: python -m pip install .[gui,preferences]
# PyTables won't build on Apple Silicon for Python < 3.10, so exclude
# the h5 dependency.
# xref: enthought/apptools/issues/344
if: (matrix.os == 'macos-latest') && ((matrix.python-version == '3.8') || (matrix.python-version == '3.9'))
- name: Run tests
run: |
mkdir testdir
cd testdir
python -m unittest discover -v apptools