Skip to content

Bump actions/setup-python from 2 to 5 #75

Bump actions/setup-python from 2 to 5

Bump actions/setup-python from 2 to 5 #75

# This workflow targets stable released dependencies from PyPI with
# minimal dependencies.
name: Minimal setup
on: pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install Python packages
run: |
python -m pip install --upgrade pip wheel
python -m pip install .[test]
- name: Run test suite
run: python -m unittest discover -v traitsui
working-directory: ${{ runner.temp }}