2nd attempt at ruff #1045
Workflow file for this run
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] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
tests: | |
name: Py${{ matrix.python-version }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-22.04] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: recursive | |
- uses: actions/[email protected] | |
with: | |
python-version: '${{ matrix.python-version }}' | |
## Start Windows stuff | |
- uses: ilammy/[email protected] | |
if: startsWith(matrix.os, 'windows') | |
- name: Set Windows Compiler | |
if: startsWith(matrix.os, 'windows') | |
run: | | |
echo "CC=cl.exe" >> $GITHUB_ENV | |
echo "CXX=cl.exe" >> $GITHUB_ENV | |
## End Windows stuff | |
- name: Install from source | |
run: | | |
pip install --upgrade pip setuptools wheel | |
pip install .[test] | |
- name: Tests | |
run: | | |
pip install cython | |
cythonize tests/test_cython/cython_example.pyx | |
pytest |