Skip to content

Bump voxmedia/github-action-slack-notify-build from 1 to 2 #80

Bump voxmedia/github-action-slack-notify-build from 1 to 2

Bump voxmedia/github-action-slack-notify-build from 1 to 2 #80

# 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@v4
- 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 }}