Skip to content

doc

doc #117

Workflow file for this run

name: build-windows
on:
push:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . -vvv
env:
USE_LONG_INT: 0
USE_UNSIGNED_LONG_INT: 0
USE_OPENMP: 0
COUNT_PERF: 0
USE_LOOP_UNROLLING: 1
USE_SYMMETRY: 1
- name: Test
if: (!contains(matrix.python-version, 'pypy'))
run: |
python -m pip install --upgrade pytest
python -m pip install --upgrade pytest-cov
python -m pip install cython
mv detkit detkit-DoNotImport
pytest
- name: Coverage
run: |
python -m pip install codecov
codecov