Merge pull request #3 from Mathics3/fixing_nested_Timeout_contexts_us… #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stopit (Windows) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
os: [windows] | |
# "make doctest" on MS Windows fails without showing much of a | |
# trace of where things went wrong on Python before 3.11. | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install stopit | |
run: | | |
python -m pip install --upgrade pip | |
pip install "setuptools>=70.0.0" packaging pytest | |
pip install -e . | |
- name: Test stopit | |
run: | | |
python tests.py |