Skip to content

Commit

Permalink
#3978 test more Python versions, with 'cythonize-more' option
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Feb 19, 2024
1 parent 778067d commit 85bb9cf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools Cython
- name: Build with extra cythonization
run: |
python ./setup.py build --with-cythonize_more
sonarqube:
name: Sonarqube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 85bb9cf

Please sign in to comment.