Make pyawaitable.h support precompiled headers. #250
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 | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'tests/**' | |
- 'src/**' | |
- '.github/workflows/tests.yml' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'tests/**' | |
- 'src/**' | |
- '.github/workflows/tests.yml' | |
concurrency: | |
group: test-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
PYTHONUNBUFFERED: "1" | |
FORCE_COLOR: "1" | |
PYTHONIOENCODING: "utf8" | |
jobs: | |
run-tests: | |
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Pytest | |
run: pip install pytest pytest-asyncio typing_extensions | |
- name: Build PyAwaitable | |
run: pip install . | |
- name: Build PyAwaitable Test Package | |
run: pip install setuptools wheel && pip install ./tests/extension/ --no-build-isolation | |
- name: Run tests | |
run: pytest -W error |