Skip to content

Prepare for release of version 5.3.0 of apptools #8

Prepare for release of version 5.3.0 of apptools

Prepare for release of version 5.3.0 of apptools #8

name: Test with minimal dependencies
on:
- pull_request
- workflow_dispatch
jobs:
tests:
strategy:
matrix:
os: [ubuntu-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@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install local package
run: python -m pip install ".[test]"
- name: Run tests
run: |
mkdir testdir
cd testdir
python -m unittest discover -v apptools