Bump types-setuptools from 75.4.0.20241115 to 75.6.0.20241126 #3634
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: Tests (Windows) | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
name: Python ${{ matrix.python-version }} (Windows) | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Check pip | |
run: python -m pip --version | |
- name: Update pip | |
run: python -m pip install --user --upgrade pip | |
- name: Install poetry | |
run: pip install poetry | |
- name: poetry install | |
run: poetry install | |
- name: create HTML output folder | |
run: mkdir html | |
- name: Integration tests | |
run: make integration-tests | |
- name: Integration tests (threaded) | |
run: make integration-tests-threaded | |
- name: Unit tests | |
run: make unit-test | |
- uses: codecov/codecov-action@v3 |